Win10正式版哪些预装的应用可以卸载

2024-12-31 16:16:11
推荐回答(3个)
回答1:

1、输入“PowerShell”并回车,找到“PowerShell”并以管理员身份运行。

2、获取应用程序清单:输入“Get-AppxPackage -User
username”username是你的用户名。

如:Get-AppxPackage -User radar

Get-AppxPackage获取应用程序清单:输入:输入“Get-AppxPackage
-User username”username是你的用户名。

如:Get-AppxPackage -AllUsers 获取所有用户安装的应用程序

Get-AppxPackage -User radar 获取我电脑指定用户名安装的应用程序

3、复制所需应用程序完整名称(PackageFullName):如卸载Windows
10中的‘卸载了自带视频应用(Microsoft.ZuneVideo),找到:Microsoft.ZuneVideo_3.6.12101.0_x64__8wekyb3d8bbwe,选中点下右键就复制了

4、使用指令remove-appxpackage
[应用程序完整名称] 卸载:,如卸载Windows 10中的‘卸载了自带视频应用:Remove-AppxPackage
Microsoft.ZuneVideo_3.6.12101.0_x64__8wekyb3d8bbwe

Windows 10预装应用删除的命令汇总:

1、OneNote:

Get-AppxPackage *OneNote* | Remove-AppxPackage

2、3D:

Get-AppxPackage *3d* | Remove-AppxPackage

3、Camera相机:

Get-AppxPackage *camera* | Remove-AppxPackage

4、邮件和日历:

Get-AppxPackage *communi* | Remove-AppxPackage

5、新闻订阅:

Get-AppxPackage *bing* | Remove-AppxPackage

6、Groove音乐、电影与电视:

Get-AppxPackage *zune* | Remove-AppxPackage

7、人脉:

Get-AppxPackage *people* | Remove-AppxPackage

8、手机伴侣(Phone Companion):

Get-AppxPackage *phone* | Remove-AppxPackage

9、照片:

Get-AppxPackage *photo* | Remove-AppxPackage

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

Get-AppxPackage *solit* | Remove-AppxPackage

11、录音机:

Get-AppxPackage *soundrec* |
Remove-AppxPackage

12、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命令卸载自带应用教程
  1、打开小娜,在搜索框中输入“PowerShell”,以管理员身份运行“Windows PowerShell”。
  2、首先把所有应用显示出来,在控制台输入命令“Get-AppxPackage”回车键,所有应用信息就都显示出来了。
  3、查找要卸载的应用,可以按“Ctrl+F”来查找,比如我要卸载系统自带的“照片”应用,可以通过“Ctrl+F”输入“photo”来查找,按“查找下一个”按钮就能找到了。
  4、一个应用的信息有很多,我们需要的只有一个,就是“PackageFullName”,包的名称。把后面名称“Microsoft.Windows.Photos_15.803.16240.0_x64__8wekyb3d8bbwe”复制下来。
  5、在控制台输入命令“Remove-AppxPackage Microsoft.Windows.Photos_15.803.16240.0_x64__8wekyb3d8bbwe”回车键,等待片刻就卸载完了。(前面的Remove-AppxPackage自己敲,后面的包名称可以直接复制,当然你可以直接在这里复制过去)
  6、打开开始菜单,我们发现照片应用就被删除了,从此我们的开始菜单看的顺眼了。
  7、还可以通过此方法继续卸载其他应用,比如视频,直接搜索“Video”,复制命令进行删除,自己敲的话一定要注意大小写,控制台是区分大小写的,写错了就无法删除哟。

回答3:

不需要的,都可以卸载
建议你可以用腾讯电脑管家来卸载哟
电脑管家是直接把软件卸载同时把注册列表也就清理了。(有的软件重启后会自动删除)

【打开腾讯电脑管家——工具箱——软件卸载】

卸载完之后,会有残留,在实行【强力卸载】