怎样删除win10里自带的应用程序

2024-11-05 11:58:21
推荐回答(2个)
回答(1):

  1. 要卸载这些所有内置应用,就要用到Windows PowerShell,它是win10系统自带的一个应用,要打开它,就单击开始菜单中的“所有应用”,然后找到Windows Power Shell的文件夹,右键单击Windows PowerShell(注意不是Windows PowerShell ISE),然后单击以管理员身份运行,就打开了

  2. 打开了Windows PowerShell,就开始输入命令了

  3. 要卸载OneNote,在里面输入Get-AppxPackage *OneNote* | RemoveA-ppxPackage可以复制,回车执行

  4. 要卸载3D,输入Get-AppxPackage *3d* | Remove-AppxPackage

  5. 要卸载Camera(相机),输入Get-AppxPackage *camera* | Remove-AppxPackage

  6. 要卸载邮件和日历,输入Get-AppxPackage *communi* | Remove-AppxPackage

  7. 要卸载新闻订阅,输入Get-AppxPackage *bing* | Remove-AppxPackage

  8. 要卸载Groove音乐、电影与电视:Get-AppxPackage *zune* | Remove-AppxPackage

  9. 要卸载人脉,输入Get-AppxPackage *people* | Remove-AppxPackage

  10. 要卸载手机伴侣(Phone Companion),输入Get-AppxPackage *phone* | Remove-AppxPackage

  11. 要卸载照片,输入Get-AppxPackage *photo* | Remove-AppxPackage

  12. 要卸载纸牌游戏,输入Get-AppxPackage *solit* | Remove-AppxPackage

  13. 要卸载录音机,输入Get-AppxPackage *soundrec* | Remove-AppxPackage

  14. 要卸载Xbox,输入Get-AppxPackage *xbox* | Remove-AppxPackage

  15. 在卸载Xbox的时候,会提示有很多错误,其实它已经被卸载了,可以不用担心!

  16. 所有卸载完成后,就只剩下应用商店了,这个留着吧,有用!卸载完效果如图

回答(2):

  1、点任务栏中搜索,输入PowerShell,然后在搜索结果中右键单击PowerShell,选择以管理员身份运行。   2、在PowerShell中输入下面的命令回车稍等片刻就可以将当前账户中的所有预装应用都删除。注意,过程中会出现错误提示,不过这并不影响最终效果。   Get-AppXPackage | Remove-AppxPackage   3、不仅当前账户,还可卸载其他账户中的所有应用,只需输入下面命令,将其中的《username》替换为账户名称即可。   Get-AppXPackage -User 《username》 | Remove-AppxPackage   若要卸载所有账户中的程序,可输入下面的命令。   Get-AppxPackage -AllUsers | Remove-AppxPackage   有些朋友可能会有创建多个账户的需求,但是又不想让每个账户中都包含全套相同的应用,在创建账户之前,可从系统账户中删除这些应用,这样新创建的账户中就不会包含全套应用了。从系统账户中卸载应用,只需输入下面的命令。   Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage–online   需要注意的是,执行操作后会将应用商店一并删除,目前没有找回方法,系统推送某些更新会重新在系统中安装应用商店。   另外,部分内置应用,比如Cortana、联系支持人员、Edge浏览器、Windows反馈,设置同搜索都无法从系统中删除。