翻译天堂 2016-10-20
Win10自带了好多应用,有些看起来不错,其实用起来不太方便哈(我的个人感觉),我们都更喜欢第三方应用(比如我就是用应用宝接手机而不是默认的windows手机伴侣,用mplayerclassic听乐看电影而不是用groove和电视与视频,而且我也不会在笔记本电脑打开windows地图导航),所以我们就来看看如何卸载这些自带应用。
单击开始菜单中的“所有应用”,然后找到Windows Power Shell的文件夹,右键单击Windows PowerShell(注意不是Windows PowerShell ISE),然后单击以管理员身份运行,就打开了。
要卸载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
P.S.在卸载Xbox的时候,会提示有很多错误,其实它已经被卸载了,可以不用担心!
要卸载地图,输入
Get-AppxPackage *map* | Remove-AppxPackage
为了防止以后微软绑定更多鸡肋进来。 Get-AppxPackage -AllUsers命令可以罗列出所有package列表,复制fullname后面的命令,按下面这样
要卸载skype和消息,输入(命令略有不同,效果一致)
Remove-AppxPackage Microsoft.SkypeApp_11.4.86.0_x64__kzf8qxf38zg5c
Remove-AppxPackage Microsoft.Messaging_3.19.1001.0_x86__8wekyb3d8bbwe
就可以了!