w10install/wimscripts/SetupComplete.ps1

6 lines
265 B
PowerShell
Raw Normal View History

2020-12-24 14:58:04 +01:00
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