wsl2 this update only applies to machines with the windows substyem for linux code example

Example 1: update to wsl2

#enable wsl 
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
#make sure windows version is >=2004
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
#restart
wsl --set-default-version 2
#if kernal error https://docs.microsoft.com/en-us/windows/wsl/wsl2-kernel

Example 2: change wsl to version 1

wsl --set-version Ubuntu-18.04 1

// Run the above command from windows powershell 
// This assumes you are running Ubuntu 18.04

Example 3: switch wsl 2 to 1

# run following commands in admin-mode PowerShell
dism.exe /online /disable-feature /featurename:VirtualMachinePlatform /norestart
wsl --set-default-version 1