Advertisement
daolamduy

Remove default Apps from Windows 10

Aug 17th, 2015
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.95 KB | None | 0 0
  1. REMOVE DEFAUT APPS FROM WINDOWS 10
  2. -------------------------------------
  3. Run Powershell as Administrator
  4. copy và paste các lệnh tương ứng với app để gỡ bỏ
  5.  
  6. Remove 3D from Windows 10
  7. :
  8. Get-AppxPackage *3d* | Remove-AppxPackage
  9. ------------------------------------------------------
  10. Remove Camera from Windows 10
  11. :
  12. Get-AppxPackage *camera* | Remove-AppxPackage
  13. ------------------------------------------------------
  14. Remove Mail and Calendar from Windows 10
  15. :
  16. Get-AppxPackage *communi* | Remove-AppxPackage
  17. ------------------------------------------------------
  18. Remove Money, Sports, News and Weather from Windows 10
  19. :
  20. Get-AppxPackage *bing* | Remove-AppxPackage
  21. -------------------------------------------------------
  22. Remove Groove Music and Film & TV from Windows 10
  23. :
  24. Get-AppxPackage *zune* | Remove-AppxPackage
  25. -------------------------------------------------------
  26. Remove People from Windows 10
  27. :
  28. Get-AppxPackage *people* | Remove-AppxPackage
  29. -------------------------------------------------------
  30. Remove Phone Companion from Windows 10
  31. :
  32. Get-AppxPackage *phone* | Remove-AppxPackage
  33. -------------------------------------------------------
  34. Remove Photos from Windows 10
  35. :
  36. Get-AppxPackage *photo* | Remove-AppxPackage
  37. --------------------------------------------------------
  38. Remove Solitaire Collection from Windows 10
  39. :
  40. Get-AppxPackage *solit* | Remove-AppxPackage
  41. --------------------------------------------------------
  42. Remove Voice Recorder from Windows 10
  43. :
  44. Get-AppxPackage *soundrec* | Remove-AppxPackage
  45. --------------------------------------------------------
  46. Remove Xbox from Windows 10
  47. :
  48. Get-AppxPackage *xbox* | Remove-AppxPackage
  49. =================================================================================================================================
  50. Đào Lâm Duy
  51. https://www.facebook.com/groups/Windows10support/
  52. https://www.facebook.com/groups/bacsymaytinhonline/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement