Share via

How to reinstall Windows Store app after uninstalling and it's no longer provisioned on laptop?

Gersan Serrano 0 Reputation points
2023-08-24T20:37:29.45+00:00

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
0 comments No comments

2 answers

Sort by: Most helpful
  1. Ekam onkar 0 Reputation points
    2026-03-09T03:59:12.24+00:00
    1. Run the command Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
    0 comments No comments

  2. 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:

    How can i successfully uninstall old version of microsoft store apps using powershell command in all user profiles - Microsoft Q&A

    Best regards,

    Karlie Weng

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.