1. 程式人生 > >刪除Win10的自帶應用

刪除Win10的自帶應用

str 建議 修改 move 關鍵字 strong gef tro win10

顯示

Get-AppxPackage | Select Name, PackageFullName

按關鍵字刪除

Get-AppxPackage *camera* | Remove-AppxPackage

其中camera是關鍵字,可根據需要刪除的應用名修改。

一次過全部刪除

Get-AppxPackage * | Remove-AppxPackage

不建議使用該命令,因為會連計算器等實用的應用也刪除。

刪除郵件(mail)和日歷(calendar)
Get-AppxPackage *communi* | Remove-AppxPackage

刪除Win10的自帶應用