w10install/scripts/uninstall-apps.ps1

26 lines
974 B
PowerShell
Raw Permalink Normal View History

2021-02-14 20:58:44 +01:00
# REMOVE all applications except the Calculator, the Store and the 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-02-14 20:58:44 +01:00
where-object {$_.name -notlike "*calc*"} |
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-02-28 21:25:39 +01:00
where-object {$_.displayname -notlike "*calc*"} |
where-object {$_.displayname -notlike "*store*"} |
where-object {$_.displayname -notlike "*terminal*"} |
2021-01-10 18:45:55 +01:00
Remove-AppxProvisionedPackage -online
2021-02-14 20:58:44 +01:00
# make sure that the calculator is installed ...
2021-02-14 15:29:16 +01:00
$PROGS=$Env:ProgramFiles
$CALC=Get-AppXpackage -Allusers Microsoft.WindowsCalculator | select -expand PackageFullName
Add-AppXPackage -register "$PROGS\WindowsApps\$CALC\AppXManifest.xml" -DisableDevelopmentMode
2021-01-10 18:45:55 +01:00
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'