Windows 10 can't open the app store

Teach you how to deal with windows 10 can't open the app store

1. Encountered a situation where the app store cannot be opened, click on the app store and a prompt "Need a new app to open this ms-windows-store" pops up

2. Click the "Start Menu" button and select "Settings"
Windows 10 can't open the app store
3. Select "System and Security" in the setting interface
Windows 10 can't open the app store
4. Click "System Update" and click Check Update
Windows 10 can't open the app store

5. Shortcut key "win + R", open the run, enter the command: wsreset, click the OK button

Windows 10 can't open the app store
6. Search Powershell in the taskbar
Windows 10 can't open the app store

7. Right-click and select "Run as administrator"
Windows 10 can't open the app store

复制以下命令
$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest

Windows 10 can't open the app store

在复制以下命令
 Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

Windows 10 can't open the app storeWindows 10 can't open the app store

8. Go back to the app store and open it again

Guess you like

Origin blog.51cto.com/11353391/2661740