删除Win10的自带应用

显示

Get-AppxPackage | Select Name, PackageFullName

 

按关键字删除

Get-AppxPackage *camera* | Remove-AppxPackage

其中camera是关键字,可根据需要删除的应用名修改。

 

一次过全部删除

Get-AppxPackage * | Remove-AppxPackage

不建议使用该命令,因为会连计算器等实用的应用也删除。

 

删除邮件(mail)和日历(calendar)
Get-AppxPackage *communi* | Remove-AppxPackage

 

posted @ 2017-09-23 23:24  Clotho_Lee  阅读(183)  评论(0编辑  收藏  举报