Forums
New posts
Search forums
News
Security News
Technology News
Giveaways
Giveaways, Promotions and Contests
Discounts & Deals
Reviews
Users Reviews
Video Reviews
Support
Windows Malware Removal Help & Support
Inactive Support Threads
Mac Malware Removal Help & Support
Mobile Malware Removal Help & Support
Blog
Log in
Register
What's new
Search
Search titles only
By:
Search titles only
By:
Reply to thread
Menu
Install the app
Install
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Forums
Software
Operating Systems
Windows 11
How to Remove or Install a Store App Package for All User Accounts (Provisioned Apps)
Message
<blockquote data-quote="lokamoka820" data-source="post: 1106339" data-attributes="member: 108773"><p>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.</p><p></p><p>First, I want to thank [USER=78686]@SeriousHoax[/USER] and [USER=61084]@brambedkar59[/USER] for sharing their provisioned apps lists with me, which helped me to avoid a clean installation to fix my issue.</p><p></p><p><strong>What is Provisioned Apps?</strong></p><p></p><p>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.</p><p></p><hr /><p></p><p><strong>How to check your Provisioned Apps?</strong></p><p></p><p>You can get a list of your provisioned apps by running the following code in terminal as admin:</p><p>[CODE]Get-AppXProvisionedPackage -Online[/CODE]</p><p></p><p>you will get a result looks like the following:</p><p></p><p>[ATTACH]285987[/ATTACH]</p><p></p><p>you can make it easier to read by filtering the names by running the following code in terminal as admin:</p><p>[CODE]Get-AppxProvisionedPackage -Online | Select DisplayName[/CODE]</p><p></p><p>the result will look like:</p><p></p><p>[ATTACH]285988[/ATTACH]</p><p></p><hr /><p></p><p><strong>Why you want to delete Provisioned Apps?</strong></p><p></p><p>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.</p><hr /><p></p><p><strong>How to delete Provisioned Apps?</strong></p><p></p><p>You can remove provisioned apps by running the following code in terminal as admin:</p><p>[CODE]Remove-ProvisionedAppPackage -online -PackageName "FULL PATH OF THE APP PACKAGE"[/CODE]</p><p></p><p>The easiest way is to use 3rd party software like <a href="https://www.oo-software.com/en/ooappbuster" target="_blank">O&O AppBuster</a> which can show you your provisioned apps even the deleted ones, by enabling the following settings:</p><p></p><p>[ATTACH]285989[/ATTACH]</p><p></p><p>now you can select the apps you want to delete and delete them from the computer:</p><p></p><p>[ATTACH]285990[/ATTACH]</p><p></p><hr /><p></p><p><strong>Why you want to install Provisioned Apps?</strong></p><p></p><p>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.</p><p></p><hr /><p></p><p><strong>How to install Provisioned Apps?</strong></p><p></p><p>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:</p><p>[URL unfurl="true"]https://www.winhelponline.com/blog/download-offline-installer-store-app/[/URL]</p><p></p><p>now you can install that app by running the following code in terminal as admin:</p><p>[CODE]Add-ProvisionedAppPackage -online -PackagePath "FULL PATH OF THE APP PACKAGE" -skiplicense[/CODE]</p></blockquote><p></p>
[QUOTE="lokamoka820, post: 1106339, member: 108773"] 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 [USER=78686]@SeriousHoax[/USER] and [USER=61084]@brambedkar59[/USER] for sharing their provisioned apps lists with me, which helped me to avoid a clean installation to fix my issue. [B]What is Provisioned Apps?[/B] 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. [HR][/HR] [B]How to check your Provisioned Apps?[/B] You can get a list of your provisioned apps by running the following code in terminal as admin: [CODE]Get-AppXProvisionedPackage -Online[/CODE] you will get a result looks like the following: [ATTACH alt="2024-10-29 03 51 20 WindowsTerminal.png"]285987[/ATTACH] 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[/CODE] the result will look like: [ATTACH alt="2024-10-29 03 57 12.png"]285988[/ATTACH] [HR][/HR] [B]Why you want to delete Provisioned Apps?[/B] 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. [HR][/HR] [B]How to delete Provisioned Apps?[/B] 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"[/CODE] The easiest way is to use 3rd party software like [URL='https://www.oo-software.com/en/ooappbuster']O&O AppBuster[/URL] which can show you your provisioned apps even the deleted ones, by enabling the following settings: [ATTACH alt="2024-10-29 04 09 20 OOAPB.gif"]285989[/ATTACH] now you can select the apps you want to delete and delete them from the computer: [ATTACH alt="2024-10-29 04 13 31 OOAPB.gif"]285990[/ATTACH] [HR][/HR] [B]Why you want to install Provisioned Apps?[/B] 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. [HR][/HR] [B]How to install Provisioned Apps?[/B] 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: [URL unfurl="true"]https://www.winhelponline.com/blog/download-offline-installer-store-app/[/URL] 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[/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Top