win10應用自動重置為系統(tǒng)默認應用的解決方法:
1、按下win+S呼出Cortana,在Cortana搜索框輸入windows powershell,鼠標右擊windows powershell以管理員運行;
2、在Cortana搜索框輸入windows powershell,鼠標右擊windows powershell以管理員運行,復制粘貼以下命令運行,
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
或者
Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }
通過上述方法進行操作之后即可有效解決win10系統(tǒng)重置默認應用的有效解決方法。