- 作者:佚名
- 时间:2017-12-20
具体如下:
1、在任务栏的搜索框中输入windows powershell,鼠标右击windows powershell以管理员运行;
windows10 cortana无法连接网络的处理方法
2、复制粘贴以下命令运行:
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }
3、在管理员身份运行的Windwos powershell输入以下指令:
Get-AppXPackage -Name Microsoft.Windows.Cortana | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
windows10 cortana无法连接网络的处理方法就介绍完了。遇到同样问题的朋友们,赶紧也尝试看看!