在使用Win10系统的过程中,难免会遇到各种小问题。比如操作中心开关变成灰色不能打开,点击也没有任何反应。那么遇到这个问题该怎么办,快来一起看看吧。 方法步骤
打开任务管理器,依次选取“文件”、“运行新任务”(注:需使用管理员身份创建这个任务);
在新建任务弹窗内输入”Powershell“ ,并按下“确定”按钮;
接着,在在Powershell中,输入以下两条命令:
$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + ‘AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like “*SystemApps*”}(注:第二条命令需要点击回车);
完成后,关闭Powershell,再重启计算机即可。