w10install/scripts/uninstall-apps.ps1
Michael H.G. Schmidt d49dcf76ee .
2021-01-31 00:41:55 +01:00

16 lines
502 B
PowerShell

# REMOVE all applications except the Store and the Calculator ...
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
$ErrorActionPreference = 'SilentlyContinue'
Get-AppxPackage -AllUsers |
where-object {$_.name -notlike @("*store*","*calc*")} |
Remove-AppxPackage
Get-AppxProvisionedPackage -online |
where-object {$_.name -notlike @("*store*","*calc*")} |
Remove-AppxProvisionedPackage -online
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'