iMesh Technology

Win-10/11

Remove everything except Calculator, Store and Photos App
Quickly remove almost all the modern apps in windows except calculator, store and photos

Uninstall

open powershell (as administrator)
Set-ExecutionPolicy Unrestricted
Get-AppxPackage -AllUsers | where-object {$_.name -notlike “Microsoft.WindowsStore“} | where-object {$_.name -notlike “Microsoft.WindowsCalculator“} | where-object {$_.name -notlike “Microsoft.Windows.Photos“} | Remove-AppxPackage
Get-AppxProvisionedPackage -online | where-object {$_.packagename -notlike “Microsoft.WindowsStore“} | where-object {$_.packagename -notlike “Microsoft.WindowsCalculator“} | where-object {$_.packagename -notlike “Microsoft.Windows.Photos“} |Remove-AppxProvisionedPackage -online

Restore

open powershell (as administrator)
Set-ExecutionPolicy Unrestricted
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”}


Install Chrome by powershell
$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; (new-object    System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe', "$LocalTempDir\$ChromeInstaller"); & "$LocalTempDir\$ChromeInstaller" /silent /install; $Process2Monitor =  "ChromeInstaller"; Do { $ProcessesFound = Get-Process | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 } else { rm "$LocalTempDir\$ChromeInstaller" -ErrorAction SilentlyContinue -Verbose } } Until (!$ProcessesFound)