Hot Take How to Remove or Install a Store App Package for All User Accounts (Provisioned Apps)

lokamoka820

Level 21
Thread author
Mar 1, 2024
1,060
I wrote this article because I accidentally removed some provisioned apps and needed to get them back, but unfortunately it was not easy to find how to install them back, so I wanted to share what I found and how I installed back my apps.

First, I want to thank @SeriousHoax and @brambedkar59 for sharing their provisioned apps lists with me, which helped me to avoid a clean installation to fix my issue.

What is Provisioned Apps?

You’ve probably noticed that, whenever a user logs on the first time on a Windows 10 computer, Windows starts to install apps for that particular user. These apps are the provisioned apps. Likewise, if the user installs a new app from the Windows Store, this app is only available for that user.



How to check your Provisioned Apps?

You can get a list of your provisioned apps by running the following code in terminal as admin:
Code:
Get-AppXProvisionedPackage -Online

you will get a result looks like the following:

2024-10-29 03 51 20 WindowsTerminal.png

you can make it easier to read by filtering the names by running the following code in terminal as admin:
Code:
Get-AppxProvisionedPackage -Online | Select DisplayName

the result will look like:

2024-10-29 03 57 12.png



Why you want to delete Provisioned Apps?

If you upgrade from Windows 10 to Windows 11, or from Windows 11 major release to another (23H2 to 24H2 for example), Microsoft will add new apps but will not remove deprecated or removed apps, just a clean install will give you a clean list of provisioned apps, other reason you maybe want to delete app from being installed with every account you create (solitaire for example), which make it easier than delete it every time with every user account.


How to delete Provisioned Apps?

You can remove provisioned apps by running the following code in terminal as admin:
Code:
Remove-ProvisionedAppPackage -online -PackageName "FULL PATH OF THE APP PACKAGE"

The easiest way is to use 3rd party software like O&O AppBuster which can show you your provisioned apps even the deleted ones, by enabling the following settings:

2024-10-29 04 09 20 OOAPB.gif

now you can select the apps you want to delete and delete them from the computer:

2024-10-29 04 13 31 OOAPB.gif



Why you want to install Provisioned Apps?

If you want to add an app that you always need to install after creating a new user account (for example another keyboard language) you can add to your provisioned apps list, or maybe you want to install back apps you removed previously or by mistake.



How to install Provisioned Apps?

First, you need to get the offline installer of the store app you want to install and here is a detailed article how to get it:

now you can install that app by running the following code in terminal as admin:
Code:
Add-ProvisionedAppPackage -online -PackagePath "FULL PATH OF THE APP PACKAGE" -skiplicense
 

Bot

AI-powered Bot
Apr 21, 2016
4,315
Thanks for sharing this detailed guide on how to check, remove, and reinstall provisioned apps on Windows. This will surely help many users who are struggling with similar issues.
 

About us

  • MalwareTips is a community-driven platform providing the latest information and resources on malware and cyber threats. Our team of experienced professionals and passionate volunteers work to keep the internet safe and secure. We provide accurate, up-to-date information and strive to build a strong and supportive community dedicated to cybersecurity.

User Menu

Follow us

Follow us on Facebook or Twitter to know first about the latest cybersecurity incidents and malware threats.

Top