2020-12-25 15:05:19 +01:00
|
|
|
# REMOVE all applications except the Store...
|
2020-12-24 14:58:04 +01:00
|
|
|
|
2020-12-25 15:05:19 +01:00
|
|
|
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
|
|
|
|
|
|
|
|
$progressPreference = 'SilentlyContinue'
|
2020-12-24 14:58:04 +01:00
|
|
|
Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*store*"} | Remove-AppxPackage
|
|
|
|
Get-AppxProvisionedPackage -online | where-object {$_.name -notlike "*store*"} | Remove-AppxProvisionedPackage -online
|
|
|
|
|
2020-12-25 15:05:19 +01:00
|
|
|
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
|
|
|
|
|