w10install/scripts/uninstall-apps.ps1
Michael H.G. Schmidt 44fd0cf305 .
2021-02-14 15:29:16 +01:00

26 lines
891 B
PowerShell

# REMOVE all applications except the Store and the 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
# REINSTALL the Calculator ...
# just sparing it is not working ... must be reinstalled ...
$PROGS=$Env:ProgramFiles
$CALC=Get-AppXpackage -Allusers Microsoft.WindowsCalculator | select -expand PackageFullName
Add-AppXPackage -register "$PROGS\WindowsApps\$CALC\AppXManifest.xml" -DisableDevelopmentMode
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'