首页 > 文章列表 > 修复无法打开WIN10磁贴的方法

修复无法打开WIN10磁贴的方法

win10 磁贴
482 2024-10-08

1、在任务栏的搜索栏中输入【PowerShell】,在搜索结果Windows PowerShell上点击鼠标右键选择【以管理员身份运行】。如下图所示:

WIN10磁贴打不开进行修复的操作方法

2、在打开的窗口中,根据实际情况选择将以下代码复制到在Windows PowerShell(管理员)窗口,并回车确认执行。

(1)适用于商店Apps问题

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register 【$($_.InstallLocation)AppXManifest.xml】}

(2)适用于Windows应用商店问题

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register 【$($_.InstallLocation)AppXManifest.xml】}

WIN10磁贴打不开进行修复的操作方法