Windows 10 Re-deploy Windows Store App for all users

  • Thread starter Thread starter Baron164
  • Start date Start date
B

Baron164

Guest
I'm cleaning up a Windows 10 1903 VDI image and the Windows Calculator app was removed. I need to re-register it for all users. Currently I can re-register for the account I'm logged in as, but not for all users who login to the machine.

I've tried this powershell snippet but then when I login with a different account the Calculator app still isn't registered and won't launch.

Get-AppxPackage -allusers *windowscalculator* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}

I would love to use Add-AppxProvisionedPackage but that requires a .appx file to install which I don't have. Is there some other way to register a store app for all users? Something that doesn't involve a repair install or rebuilding the machine from scratch.


Vincent Sprague

More...
 
Back
Top