- Run the command
Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
How to reinstall Windows Store app after uninstalling and it's no longer provisioned on laptop?
I'm trying to avoid reinstalling Windows 10.
No success with
Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Windows for business | Windows Client for IT Pros | User experience | Other
2 answers
Sort by: Most helpful
-
Ekam onkar 0 Reputation points
2026-03-09T03:59:12.24+00:00 -
Anonymous
2023-09-14T09:04:32.2333333+00:00 Hello Gersan Serrano
How about using following steps?
1. Run command Get-AppxPackage -AllUsers to find the exact App's Package Name, the package name would be like "Microsoft.WindowsStore_8wekyb3d8bbwe”
2. Run Add-AppxPackage -register "C:\Program Files\WindowsApps\PackageFullName\AppxManifest.xml" -DisableDevelopmentMode to reinstall the app, replacing "PackageFullName" with the actual package name of the app.
Then you might use Get-AppxPackage -Name "AppPackageName" | Select-Object -Property Name,PackageFullName,PackageUserInformation,InstallLocation to check the package status.
Reference:
Best regards,
Karlie Weng