Win10预装应用太多?一个命令彻底删除!
我们不需要借助任何第三方工具哦。为啥呢?微软在系统里已经给我们预备好了一个工具,这工具就是“Windows PowerShell”。在这个命令窗口执行对应的命令,就能轻松把各种预装应用删掉啦。那怎么打开“Windows PowerShell”呢?有两条路可走,咱们一起去瞧瞧吧。
注意是完全的删除,而不是仅仅屏蔽掉。
先在开始菜单里找到它,然后右键单击,接着选择“以管理员身份运行”。之后,要是想卸载某个东西的话,就输入对应的命令。
要找到“Windows PowerShell”,有个简单的办法。我们能直接在开始菜单的“所有应用”里去找,它就在“Windows 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的删除指令啊,就会蹦出一大串错误提示。不过呢,咱不用去管它,因为实际上Xbox这个应用已经被成功删掉了。
下面就到绝招了。要是打算一次性把这些全部删掉的话,那就输入:
Get-AppxPackage -AllUsers | Remove-AppxPackage
不过,要是你先创建一个账户呢,刚刚提到的那些应用就又会全都冒出来了。要是不想这样的话,你可以输入:
Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage –online
Xbox被删除后,会出现一大堆错误提示信息。不过实际上它已经被成功删除了,所以不用去管这些提示。
PS C:WINDOWSsystem32> Get-AppxPackage *xbox* | Remove-AppxPackageRemove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.(Exception from HRESULT: 0x80073CFA)error 0x80070032: AppX Deployment Remove operation on packageMicrosoft.XboxGameCallableUI_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy from:C:WindowsSystemAppsMicrosoft.XboxGameCallableUI_cw5n1h2txyewy failed. This app is part of Windows and cannot beuninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn WindowsFeatures 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 usethe command line Get-AppxLog -ActivityID 1d60accb-cb8d-0003-d5b8-601d8dcbd001At 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 packageMicrosoft.XboxIdentityProvider_1000.10240.16384.0_neutral_neutral_cw5n1h2txyewy from:C:WindowsSystemAppsMicrosoft.XboxIdentityProvider_cw5n1h2txyewy failed. This app is part of Windows and cannot beuninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn WindowsFeatures 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 usethe command line Get-AppxLog -ActivityID 1d60accb-cb8d-0001-d9b9-601d8dcbd001At 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
你有没有觉得删除预装程序挺简单的呢?要是你也忍受不了系统里那些预装的东西,像有些人看到系统里预装了好多自己根本用不上的程序就觉得特别不舒服,那就别犹豫,赶紧动手去删吧。