1、在Cortana搜索框輸入windows powershell,鼠標右擊windows powershell以管理員運行,或者win+x也可以打開windows powershell。
復(fù)制粘貼以下命令運行,
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
或者
Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }
方法其實很簡單。我們只需要在windows powershell運行以上命令即可解決問題。
總結(jié):以上就是win10升級1709之后總是提示卸載或者變更應(yīng)用程序的解決方法了,希望對大家有幫助。