w10install/SetupComplete.ps1
Michael H.G. Schmidt e155d4a134 .
2020-12-26 18:50:11 +01:00

17 lines
470 B
PowerShell

# SetupComplete.ps1 ...
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
echo "[ place your code here ] ..."
$progressPreference = 'SilentlyContinue'
Get-AppxPackage -AllUsers |
where-object {$_.name -notlike "*store*"} |
Remove-AppxPackage
Get-AppxProvisionedPackage -online |
where-object {$_.name -notlike "*store*"} |
Remove-AppxProvisionedPackage -online
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'