Sunday, January 28, 2018

Removing a provisioned Windows Store app from all users

One user wanted to know how to uninstall a specific Windows Store app that was provisioned for all users, removing it from all user profiles. As some of the articles they found mentioned, Remove-AppxProvisionedPackage is the relevant cmdlet. In particular, the -AllUsers switch will do the job. The full command the user needed is:

Remove-AppxProvisionedPackage -PackageName $pkgName -Online -AllUsers

No comments:

Post a Comment