w10install/scripts/uninstall-apps.ps1

19 lines
587 B
PowerShell
Raw Normal View History

2021-01-31 23:59:16 +01:00
# REMOVE all applications except the Storem, Calculator and Terminal ...
2021-01-10 18:45:55 +01:00
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
2021-01-20 23:36:56 +01:00
$ErrorActionPreference = 'SilentlyContinue'
2021-01-10 18:45:55 +01:00
Get-AppxPackage -AllUsers |
2021-01-31 23:59:16 +01:00
where-object {$_.name -notlike "*store*"} |
where-object {$_.name -notlike "*terminal*"} |
2021-01-10 18:45:55 +01:00
Remove-AppxPackage
2021-01-31 23:59:16 +01:00
2021-01-10 18:45:55 +01:00
Get-AppxProvisionedPackage -online |
2021-01-31 23:59:16 +01:00
where-object {$_.name -notlike "*store*"} |
where-object {$_.name -notlike "*terminal*"} |
2021-01-10 18:45:55 +01:00
Remove-AppxProvisionedPackage -online
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'