Set up WinRM

Open PowerShell as an Administrator
---
$ATTUNE_IP = "127.0.0.1"
# Enable WinRM
Enable-PSRemoting -SkipNetworkProfileCheck -Force
# Replace the listener with a HTTPS one and generate a certificate
Remove-Item -Path WSMan:\Localhost\listener\listener* -Recurse;
New-Item -Path WSMan:\LocalHost\Listener `
      -Transport HTTPS `
      -Address * `
      -CertificateThumbPrint `
            (New-SelfSignedCertificate `
            -CertstoreLocation Cert:\LocalMachine\My `
            -DnsName $env:computername `
            -NotAfter (get-date).AddYears(6)).Thumbprint `
      -Force
# Add a firewall rule to only listen to Attune
New-NetFirewallRule -DisplayName 'WinRM HTTPS' `
                  -Name 'WinRM_HTTPS' `
                  -Profile Any `
                  -LocalPort 5986 `
                  -Protocol TCP `
                  -RemoteAddress $ATTUNE_IP
---
# Enable File and Print sharing, via PowerShell
# This is for windows deployment step
Get-NetFirewallRule -DisplayGroup 'File and Printer Sharing' `
    | Set-NetFirewallRule -Profile 'Private, Domain' -Enabled true
---
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
# Tell the computer to restart and apply changes
Restart-Computer
---
From this page
https://aka.ms/wsl2kernel
Download and install this update
https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi
---
Open Powershell
---
Run 
#####wsl --set-default-version 2
---
Install debian from the microsoft store
https://www.microsoft.com/store/productId/9MSVKQC78PK6
---
Open Debian
---
Set the username and password
---
Run 
sudo apt update
sudo apt install xorriso
=--------
Setup Win User password
----
Download and install VirtualBox
https://www.virtualbox.org/wiki/Downloads
----------------------------------------------------
PARALLELS
Set password
Enable parallels share

Message Jarrod Chesney:slack_call: On a call