PowerShell Pacakge to ReInstall Windows Store
Jeff Turley
I created a package with a single step that runs a power shell command to reinstall the Windows Store App. The command I an running is:
Get-AppxPackage windowsstore -allusers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "(_.InstallLocation)\AppXManifest.xml"}
The command works correctly when i run it locally on a computer. When I deploy it through PDQDeploy it runs successfully but the windows store app is not installed. Any ideas?
0
Comments