Windows
How to fix Microsoft Store error 0x8A150049 in windows 10/11
#How to fix Microsoft Store error 0x8A150049
Reinstall Microsoft Store :
Get-AppxPackage Microsoft.WindowsStore | Remove-AppxPackage
Get-AppxPackage -AllUsers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”}
—————————————————————————————————————————
Re-register all Windows apps :
Get-AppxPackage -AllUsers *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”}
[ad_2]
source