w10install/scripts/uninstall-apps.ps1
Michael H.G. Schmidt 417e62f676 .
2021-02-08 00:02:42 +01:00

19 lines
587 B
PowerShell

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