Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco install 7zip.install -y
choco install GoogleChrome -y
choco install firefox -y
choco install vlc -y
choco install paint.net -y
choco install visualstudiocode -y
as Owner
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
as chicktech Install Ubuntu via the store
Update Ubuntu
sudo apt-get update # Fetches the list of available updates
sudo apt-get upgrade # Strictly upgrades the current packages
sudo apt-get dist-upgrade # Installs updates (new ones)
More Info Official Instructions
be sure to turn on updates for all microsoft products
Check for installed games
Get-AppxPackage -AllUsers | where {($_.Name -notlike "Microsoft*" -and $_.Name -notlike "Windows*")} | Select Name, PackageFullName
Remove-AppxPackage -AllUsers -Package <<PackageFullName>>