1、在Cortana搜索框输入windows powershell,鼠标右击windows powershell以管理员运行,或者win+x也可以打开windows powershell。
复制粘贴以下命令运行,
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
或者
Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }
方法其实很简单。我们只需要在windows powershell运行以上命令即可解决问题。
总结:以上就是win10升级1709之后总是提示卸载或者变更应用程序的解决方法了,希望对大家有帮助。