Advertisement
mdestroy

Uninstall Windows Apps

Aug 25th, 2016
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. #Save it as batch file, then execute as admin to remove all Windows Apps
  2. #These apps will probably be back after update such as latest "Windows Anniversary Update"
  3.  
  4. @echo off
  5. echo Press ANY key to start
  6.  
  7. powershell -Command "& {Get-AppxPackage *3dbuilder* | Remove-AppxPackage;}"
  8. echo 3dbuilder removed
  9. powershell -Command "& {Get-AppxPackage *windowsalarms* | Remove-AppxPackage;}"
  10. echo Alarms and Clock removed
  11. powershell -Command "& {Get-AppxPackage *windowscalculator* | Remove-AppxPackage;}"
  12. echo Calculator removed
  13. powershell -Command "& {Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage;}"
  14. echo Calendar and Mail removed
  15. powershell -Command "& {Get-AppxPackage *windowscamera* | Remove-AppxPackage;}"
  16. echo Camera removed
  17. powershell -Command "& {Get-AppxPackage *officehub* | Remove-AppxPackage;}"
  18. echo Get Office removed
  19. powershell -Command "& {Get-AppxPackage *skypeapp* | Remove-AppxPackage;}"
  20. echo Get Skype removed
  21. powershell -Command "& {Get-AppxPackage *getstarted* | Remove-AppxPackage;}"
  22. echo Get Started removed
  23. powershell -Command "& {Get-AppxPackage *zunemusic* | Remove-AppxPackage;}"
  24. echo Groove Music removed
  25. powershell -Command "& {Get-AppxPackage *windowsmaps* | Remove-AppxPackage;}"
  26. echo Maps removed
  27. powershell -Command "& {Get-AppxPackage *solitairecollection* | Remove-AppxPackage;}"
  28. echo Microsoft Solitaire Collection removed
  29. powershell -Command "& {Get-AppxPackage *bingfinance* | Remove-AppxPackage;}"
  30. echo Money removed
  31. powershell -Command "& {Get-AppxPackage *zunevideo* | Remove-AppxPackage;}"
  32. echo Movies and TV removed
  33. powershell -Command "& {Get-AppxPackage *bingnews* | Remove-AppxPackage;}"
  34. echo News removed
  35. powershell -Command "& {Get-AppxPackage *onenote* | Remove-AppxPackage;}"
  36. echo OneNote removed
  37. powershell -Command "& {Get-AppxPackage *people* | Remove-AppxPackage;}"
  38. echo People removed
  39. powershell -Command "& {Get-AppxPackage *phone* | Remove-AppxPackage;}"
  40. echo Phone removed
  41. powershell -Command "& {Get-AppxPackage *windowsphone* | Remove-AppxPackage;}"
  42. echo Phone Companion removed
  43. powershell -Command "& {Get-AppxPackage *photos* | Remove-AppxPackage;}"
  44. echo Photo removed
  45. powershell -Command "& {Get-AppxPackage *bingsports* | Remove-AppxPackage;}"
  46. echo Sports removed
  47. powershell -Command "& {Get-AppxPackage *soundrecorder* | Remove-AppxPackage;}"
  48. echo Voice Recorder removed
  49. powershell -Command "& {Get-AppxPackage *bingweather* | Remove-AppxPackage;}"
  50. echo Weather removed
  51. powershell -Command "& {Get-AppxPackage *xboxapp* | Remove-AppxPackage;}"
  52. echo Xbox removed
  53. echo Arrivederci!
  54. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement