Hi,
if you want to check if a computer is joined ADFS and/or Azure AD use
Continue reading Windows: Check if computer is joined to Azure AD
Hi,
if you want to check if a computer is joined ADFS and/or Azure AD use
Continue reading Windows: Check if computer is joined to Azure AD
Hi,
Windows 11 comes with a “face lift”. The Ribbon bar of the explorer, introduced in Windows Vista, was removed. But many User likes them because many functions like copy etc. can really fast accessed without opening a context menu.
Continue reading Windows 11: Enable the Explorer Ribbonbar
Hi,
WSL is not limited to the OS images from the Micosoft store. You can import custom images either when the distributor offers a mini root file system or you can convert docker os images for the import into wsl. This is described in this post.
Requierments are
Installation Docker Desktop for Windows. Download latest version, start installation and ensure “Install requiered Windows Components for WSL2” is selected.
An example:
Start the wsl distribution Ubuntu and check if docker works.
1 | D:\> ubuntu2004 |
1 2 | michael@windev:~$ docker --version Docker version 20.10.10, build b485636 |
A “service docker start” as describted in the microsoft documentation is not necessary.
Search docker hub for suitable (offical) OS Image. Here Archlinux
Get the arch linux docker container and start it (see documentation of the vendor)
1 2 3 4 5 | michael@windev:~$ sudo su root@windev: /home/michael # docker run -it --name archlinux_export archlinux bash -c ls -l Unable to find image 'docker:latest' locally 7a147323bccf: Extracting [============> ] 34.54MB /134 .3MB 160ee6c41455: Download complete |
Get an id from an archlinux container and export the container to one of your Windows drives. Here D:\temp which is mounted under /mnt/d/temp.
1 2 3 | root@windev: /home/michael # docker container list --all| grep -i archlinux_export c50a0039d252 archlinux "bash -c ls -l" 42 seconds ago Exited (0) 40 seconds ago root@windev: /home/michael # docker export c50a0039d252 > /mnt/d/temp/archlinux.tar |
Then delete the container and exit wsl
1 | root@windev: /home/michael # docker container rm c50a0039d252 |
Back on the windows command try to import the archlinux tar file.
1 | D:\> wsl -- import archlinux D:\temp\wsl\archlinux D:\temp\archlinux. tar |
Check the import
1 2 | D:\> wsl -l --all archlinux |
and start the distibution
1 2 3 | C:\Users\Michael>wsl -d archlinux [root@windev Michael] # cat /etc/issue Arch Linux \r (\l) |
Michael
Hi,
to determine who shuts down Windows the system log can be filtered for the Event Id 1074 (Source User32).
Continue reading Windows: Determine who and why shuts down Windows
Hi,
to login to your ESXi Hosts by ssh using public/private key authentication you need to place your public key into the authorized_keys file of the correspondenting user.
Continue reading ESXi: ssh public/private key authentication