干掉win10自带的不给力的应用(转自https://jingyan.baidu.com/article/08b6a591b7398514a8092238.html)

1.右键以管理员身份运行Windows power shell,(怎么找到Windows power shell?按下win键,直接搜索就有了)

2.在应用中输入命令 Get-AppXPackage | Remove-AppxPackage 即可将系统预装的所有应用都卸载了。

不仅当前账户,我们还可以卸载其他账户中的所有应用,只需输入下面的命令,将其中的《username》替换为账户名称即可。

  Get-AppXPackage -User 《username》 | Remove-AppxPackage

  如果要卸载所有账户中的应用,可输入下面的命令。

  Get-AppxPackage -AllUsers | Remove-AppxPackage

  有些朋友可能会有创建多个账户的需求,但是又不想让每个账户中都包含全套相同的应用,在创建账户之前,我们可以从系统账户中删除这些应用,这样新创建的账户中就不会包含全套应用了。从系统账户中卸载应用,只需输入下面的命令。

  Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage–online

  需要注意的是,执行以后上操作后会将应用商店也一并删除,目前也没有找回的方法,系统推送的某些更新会重新在系统中安装应用商店。另外,部分内置应用,比如Cortana、联系支持人员、Edge浏览器、Windows反馈,设置和搜索无法从系统中删除。

ps:什么,你只是想要卸载部分自带应用?可以,我们都可以满足你

  附:单独卸载win10自带应用命令

  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已被成功卸载)

  英文提示:

  PS C:WINDOWSsystem32> 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:WindowsSystemAppsMicrosoft.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,   …………………………………………………………………………………………

  ………………以下省略一大段文字

  选择无视这段提示,这只是微软提出的安全警告,并不会对系统造成任何影响

  以上就是用power shell 命令卸载win10自带应用的介绍了。

原文地址:https://www.cnblogs.com/yaomeng/p/8920130.html