win10 系统问题

管理员身份运行 Windows PowerShell

1.win10 开始菜单不管用,个性化、显示设置打不开
Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }

2.win10右键打不开显示设置弹出ms-settings:display错误怎么解决?
$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "SystemApps"}

执行完以后重启电脑

posted @ 2021-06-30 08:48  彦桢  阅读(108)  评论(0编辑  收藏  举报