win10清理自带xbox,天气等应用

来源:互联网 发布:linux查看进程id 编辑:程序博客网 时间:2024/04/30 16:39

方法一:

用PowerShell命令行可以完全删除一些预装应用,注意是完全的删除,而不是仅仅屏蔽掉。

OneNote:

Get-AppxPackage *OneNote* | Remove-AppxPackage

3D:

Get-AppxPackage *3d* | Remove-AppxPackage

Camera相机:

Get-AppxPackage *camera* | Remove-AppxPackage

邮件和日历

Get-AppxPackage *communi* | Remove-AppxPackage

新闻订阅:

Get-AppxPackage *bing* | Remove-AppxPackage

Groove音乐、电影与电视:

Get-AppxPackage *zune* | Remove-AppxPackage

人脉:

Get-AppxPackage *people* | Remove-AppxPackage

手机伴侣(Phone Companion):

Get-AppxPackage *phone* | Remove-AppxPackage

照片:

Get-AppxPackage *photo* | Remove-AppxPackage

纸牌游戏(还敢要钱的那货):

Get-AppxPackage *solit* | Remove-AppxPackage

录音机:

Get-AppxPackage *soundrec* | Remove-AppxPackage

Xbox:

Get-AppxPackage *xbox* | Remove-AppxPackage

注意,最后这个删除Xbox后会给出一大片错误提示信息,但其实已经删掉了,不必理会。

PS C:\WINDOWS\system32> Get-AppxPackage *xbox* | Remove-AppxPackage

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.XboxGameCallableUI_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.XboxGameCallableUI_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] 1d60accb-cb8d-0003-d5b8-601d8dcbd001 in the Event Log or use

the command line Get-AppxLog -ActivityID 1d60accb-cb8d-0003-d5b8-601d8dcbd001

At line:1 char:26

+ Get-AppxPackage *xbox* | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.XboxG...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.XboxIdentityProvider_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.XboxIdentityProvider_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] 1d60accb-cb8d-0001-d9b9-601d8dcbd001 in the Event Log or use

the command line Get-AppxLog -ActivityID 1d60accb-cb8d-0001-d9b9-601d8dcbd001

At line:1 char:26

+ Get-AppxPackage *xbox* | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.XboxI...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand



方法2:

利用powershell命令:

输入下面的命令回车,PS会列出系统中所有已安装应用列表。

Get-AppxPackage -AllUsers

如何卸载Win10自带Xbox、人脉、天气等应用?

• 从列表中找到你要卸载的应用,并找到其全名称,即PackageFullName。如果你觉得太长,可以把结果复制到记事本中查找关键字。

• 找到应用包全名称后,输入下面的指令即可卸载对应应用,将PackageFullName替换为应用包全名称即可。

Remove-AppxPackage PackageFullName

比如卸载自带的人脉应用,可输入下面的命令。

Remove-AppxPackage Microsoft.People_1.10241.0.0_x86__8wekyb3d8bbwe

如何卸载Win10自带Xbox、人脉、天气等应用?

卸载后结果:

如何卸载Win10自带Xbox、人脉、天气等应用?

0 0
原创粉丝点击