https://www.thewindowsclub.com/windows-store-app-missing-windows-10
powershell 执行
1 Set-ExecutionPolicy Unrestricted
2 保存reinstall-preinstalledApps.ps1文件 执行reinstall-preinstalledApps.ps1 *Microsoft.WindowsStore*
# Get all the provisioned packages $Packages = (get-item 'HKLM:SoftwareMicrosoftWindowsCurrentVersionAppxAppxAllUserStoreApplications') | Get-ChildItem # Filter the list if provided a filter $PackageFilter = $args[0] if ([string]::IsNullOrEmpty($PackageFilter)) { echo "No filter specified, attempting to re-register all provisioned apps." } else { $Packages = $Packages | where {$_.Name -like $PackageFilter} if ($Packages -eq $null) { echo "No provisioned apps match the specified filter." exit } else { echo "Registering the provisioned apps that match $PackageFilter" } } ForEach($Package in $Packages) { # get package name & path $PackageName = $Package | Get-ItemProperty | Select-Object -ExpandProperty PSChildName $PackagePath = [System.Environment]::ExpandEnvironmentVariables(($Package | Get-ItemProperty | Select-Object -ExpandProperty Path)) # register the package echo "Attempting to register package: $PackageName" Add-AppxPackage -register $PackagePath -DisableDevelopmentMode }
3 使用WSReset.exe 重置
重新安装ms store 命令
https://answers.microsoft.com/zh-hans/windows/forum/all/windows10%E5%BA%94%E7%94%A8%E5%95%86%E5%BA%97/7a3cee2d-cde9-4547-9a79-b8d91fef979f?auth=1
get-appxpackage *store* | remove-Appxpackage
add-appxpackage -register "C:Program FilesWindowsApps*Store*AppxManifest.xml" -disabledevelopmentmode