Thursday, May 24, 2018

Removing Modern Apps from Win10 Gold Image

You are creating a gold image. You are disconnected from the internet. You want to get rid of all the non-corporatte, interent grabbing apps on there.

I looked at this post https://gal.vin/2017/04/06/removing-uwp-apps-mdt/

And found some great tips. Look at the list of apps that can not be removed. You desperately want to, but don't be fooled.

I added an out-gridview command to mine.

Get-AppxPackage -allusers | out-gridView -Mode Multiple | remove-AppxPackage
It simplifies the whole script. Since you know the App name is valid, no error checking is needed.

Get-AppxProvisionedPackage -Online | Out-GridView -Mode Multiple | Remove-AppxProvisionedPackage -Online

And the same for the Provisioned Packages.

No comments:

Post a Comment