6 lines
265 B
PowerShell
6 lines
265 B
PowerShell
rem REMOVE all applications except the Store...
|
|
|
|
Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*store*"} | Remove-AppxPackage
|
|
Get-AppxProvisionedPackage -online | where-object {$_.name -notlike "*store*"} | Remove-AppxProvisionedPackage -online
|
|
|