w10install/scripts/uninstall-apps.ps1
Michael H.G. Schmidt 09b3c6ef11 .
2021-01-10 15:49:37 +01:00

17 lines
487 B
PowerShell

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