I used the following references to learn how to install Docker Desktop and WSL2:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-GuestInfo($VMName) { | |
$VMs = @() | |
if ($VMName) { | |
$VMs += Get-VM $VMName | Where-Object State -eq "Running" | |
} else { | |
$VMs += Get-VM | Where-Object State -eq "Running" | |
} | |
ForEach ($VM in $VMs) { | |
$NICs = $VM | Select-Object -ExpandProperty NetworkAdapters | |
if ($NICs) { |
I used the following references to learn how to install Arch Linux in a virtual machine:
I used the following resources when building this runbook: