w10install/wimscripts/SetupComplete.ps1
Michael H.G. Schmidt 5064e18944 .
2020-12-24 14:58:04 +01:00

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