Recover after Windows 10 Microsoft Store is deleted [Super Simple]

1. Press the win+x shortcut key and select Windows Powershell (administrator)

insert image description here

Second, enter the following command

Get-AppXPackage *WindowsStore* -AllUsers | Foreach {
    
    Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

Effect: (re-added successfully)

insert image description here

Guess you like

Origin blog.csdn.net/VariatioZbw/article/details/111771456