Cách gỡ ứng dụng Universal trên Windows 10
Windows 10 có nhiều ứng dụng Universal được cài sẵn, có nhiều ứng dụng ta không dùng đến và nó cũng không cho gỡ bỏ theo cách thông thường.
Tuy nhiên hệ điều hành Windows 10 cũng tích hợp sẵn công cụ để ta có thể gỡ bỏ những ứng dụng không cần thiết – Đó là công cụ: PowerShell
Bạn gõ PowerShell vào ô tìm kiếm trên thanh Taskbar
Nhấp phải chuột vào Windows PowerShell chọn Run as administrator
Hộp thoại UAC xuất hiện, bạn chọn Yes, cửa sổ PowerShell xuất hiện, tại đây bạn có thể dùng các dòng lệnh để xóa các ứng dụng không dùng đến.
Cú pháp của các dòng lệnh: Get-AppxPackage *tên ứng dụng* | Remove-AppxPackage
Một số ứng dụng với các dòng lệnh như sau:
3D Builder: Get-AppxPackage *3dbuilder* | Remove-AppxPackage
Alarms and Clock: Get-AppxPackage *windowsalarms* | Remove-AppxPackage
Calculator: Get-AppxPackage *windowscalculator* | Remove-AppxPackage
Calendar and Mail: Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
Camera: Get-AppxPackage *windowscamera* | Remove-AppxPackage
Get Office: Get-AppxPackage *officehub* | Remove-AppxPackage
Get Skype: Get-AppxPackage *skypeapp* | Remove-AppxPackage
Get Started: Get-AppxPackage *getstarted* | Remove-AppxPackage
Groove Music: Get-AppxPackage *zunemusic* | Remove-AppxPackage
Maps: Get-AppxPackage *windowsmaps* | Remove-AppxPackage
Microsoft Solitaire Collection: Get-AppxPackage *solitairecollection* | Remove-AppxPackage
Money: Get-AppxPackage *bingfinance* | Remove-AppxPackage
Movies & TV: Get-AppxPackage *zunevideo* | Remove-AppxPackage
News: Get-AppxPackage *bingnews* | Remove-AppxPackage
OneNote: Get-AppxPackage *onenote* | Remove-AppxPackage
People: Get-AppxPackage *people* | Remove-AppxPackage
Phone Companion: Get-AppxPackage *windowsphone* | Remove-AppxPackage
Photos: Get-AppxPackage *photos* | Remove-AppxPackage
Store: Get-AppxPackage *windowsstore* | Remove-AppxPackage
Sports: Get-AppxPackage *bingsports* | Remove-AppxPackage
Voice Recorder: Get-AppxPackage *soundrecorder* | Remove-AppxPackage
Weather: Get-AppxPackage *bingweather* | Remove-AppxPackage
Xbox: Get-AppxPackage *xboxapp* | Remove-AppxPackage
Bạn cần xóa những ứng dụng nào thì chỉ cần copy những dòng lệnh tương ứng ở trên dán vào cửa sổ PowerShell sau đó nhấn Enter.
Trong trường hợp muốn cài lại các ứng dụng này, bạn chỉ cần nhập lệnh dưới đây vào Windows PowerShell và nhấn Enter. Các ứng dụng sẽ tự động được tải về từ Windows Store.
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
Chúc bạn thành công!