w10install/scripts/uninstall-apps.ps1
Michael H.G. Schmidt f864764b30 .
2021-01-31 23:59:16 +01:00

21 lines
679 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 "*calc*"} |
where-object {$_.name -notlike "*terminal*"} |
Remove-AppxPackage
Get-AppxProvisionedPackage -online |
where-object {$_.name -notlike "*store*"} |
where-object {$_.name -notlike "*calc*"} |
where-object {$_.name -notlike "*terminal*"} |
Remove-AppxProvisionedPackage -online
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'