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
Install-Module PSWindowsUpdate
Set-ExectuionPolicy Unrestricted
Add-WUServiceManager -ServiceID 7971f918-a847-4430-9279-4a52d1efe18d
Get-WUInstall –MicrosoftUpdate –AcceptAll –AutoReboot
If Needed
Get-AppxPackage -AllUsers | Select Name, PackageFullName
Remove-AppxPackage -AllUsers -Package <<PackageFullName>>
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