如何卸载 UWP 应用?

如何卸载 UWP 应用?

当我进入“设置”然后进入“应用”时,我可以看到一个应用列表,其中一些我想卸载。例如 Cortana 或 Microsoft Store,但这些应用的卸载按钮已停用。有没有办法在不破坏操作系统的情况下摆脱这些烦人的应用?

答案1

首先,它们不会造成任何危害,因此没有必要卸载。

其次,如果必须卸载它们,请使用 Power Shell 来执行此操作。

卸载 Cortana。请参阅:

卸载 Cortana

使用PowerShell卸载Cortana的步骤如下:

Launch the PowerShell as administrator.
Enter the following command in the PowerShell window and press Enter key.
Get-AppxPackage -AllUsers Microsoft.549981C3F5F10 | Remove-AppPackage.
The above PowerShell command uninstalls the Cortana from Windows 10 and Windows 11.

要卸载 Microsoft Store,请参阅:

卸载商店

Run Powershell as administrator.
Copy and paste the following command into the Powershell prompt and hit Enter: Get-AppxPackage *windowsstore* | Remove-AppxPackage
To reinstall the Windows Store, open Powershell as administrator and run the following command: Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}

现在请注意:

卸载这些内容是可行的,但要恢复它们可能需要重新安装 Windows。

在卸载 Cortana 并进行一年的更新后,我必须这样做(当合适的时候)。

因此我的建议是不要管那么多。

相关内容