a(适用于商店Apps问题)
在Windows PowerShell(管理员)下执行命令:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
b (适用于Windows应用商店问题)
在Windows PowerShell(管理员)下执行命令:
$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
未经允许不得转载:MikuAlpha's Blog » Windows10 应用商店及UWP应用语言变为英文的解决方法