Advertisement
FreeBooter

Uninstall_Windows10_Built-in_Apps

Mar 3rd, 2020 (edited)
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 12.41 KB | Fixit | 0 0
  1. :: Uninstall Windows 10 Built-in Apps
  2.  
  3.  
  4. @Echo Off & Color 0E
  5.  
  6.  
  7. net sess>nul 2>&1||(powershell start cmd -ArgumentList """/c %~0""" -verb Runas & exit)
  8.  
  9. Cd %TMP%
  10.  
  11. :Choice
  12.  
  13. Cls
  14. Echo.
  15. Echo 1. Reinstall and Re-Register All Windows Apps for Current Account Only
  16. Echo.
  17. Echo 2. Reinstall and Re-Register All Windows Apps for All Accounts
  18. Echo.
  19. Echo 3. Uninstall 3D Builder
  20. Echo.
  21. Echo 4. Uninstall 3D Viewer
  22. Echo.
  23. Echo 5. Uninstall Alarms and Clock
  24. Echo.
  25. Echo 6. Uninstall App Connector
  26. Echo.
  27. Echo 7. Uninstall Calculator
  28. Echo.
  29. Echo 8. Uninstall Calendar and Mail
  30. Echo.
  31. Echo 9. Uninstall Camera
  32. Echo.
  33. Echo 10. Uninstall Candy Crush Soda Saga
  34. Echo.
  35. Echo 11. Uninstall Contact Support
  36. Echo.
  37. Echo 12. Uninstall Drawboard PDF
  38. Echo.
  39. Echo 13. Uninstall Feedback Hub
  40. Echo.
  41. Echo 14. Uninstall Get Help
  42. Echo.
  43. Echo 15. Uninstall Get Office
  44. Echo.
  45. Echo 16. Uninstall Get Started
  46. Echo.
  47. Echo 17. Uninstall Groove Music
  48. Echo.
  49. Echo 18. Uninstall Mail and Calendar
  50. Echo.
  51. Echo 19. Uninstall Maps
  52. Echo.
  53. Echo 20. Uninstall Messaging
  54. Echo.
  55. Echo 21. Uninstall Microsoft Solitaire Collection
  56. Echo.
  57. Echo 22. Uninstall Microsoft Store
  58. Echo.
  59. Echo 23. Uninstall Microsoft Whiteboad
  60. Echo.
  61. Echo 24. Uninstall Mixed Reality Portal
  62. Echo.
  63. Echo 25. Uninstall Money
  64. Echo.
  65. Echo 26. Uninstall Movies and TV
  66. Echo.
  67. Echo 27. Uninstall News
  68. Echo.
  69. Echo 28. Uninstall OneDrive
  70. Echo.
  71. Echo 29. Uninstall OneNote
  72. Echo.
  73. Echo 30. Uninstall Paint 3D
  74. Echo.
  75. Echo 31. Uninstall Phone
  76. Echo.
  77. Echo 32. Uninstall Phone Companion
  78. Echo.
  79. Echo 33. Uninstall Photos
  80. Echo.
  81. Echo 34. Uninstall Skype
  82. Echo.
  83. Echo 35. Uninstall Snip and Sketch
  84. Echo.
  85. Echo 36. Uninstall Sports
  86. Echo.
  87. Echo 37. Uninstall Sticky Notes
  88. Echo.
  89. Echo 38. Uninstall Sway
  90. Echo.
  91. Echo 39. Uninstall Tips
  92. Echo.
  93. Echo 40. Uninstall Twitter
  94. Echo.
  95. Echo 41. Uninstall Voice Recorder
  96. Echo.
  97. Echo 42. Uninstall Weather
  98. Echo.
  99. Echo 43. Uninstall Xbox Console Companion
  100. Echo.
  101. Echo 44. Uninstall Xbox Game Bar
  102. Echo.
  103. Echo 45. Uninstall Xbox One SmartGlass
  104. Echo.
  105. Echo 46. Uninstall Your Phone
  106. Echo.
  107.  
  108.  
  109. Set /p input= Type a number:
  110.  
  111. If %input%==1 Goto :Current
  112. If %input%==2 Goto :All
  113. If %input%==3 Goto :3DBuilder
  114. If %input%==4 Goto :3DViewer
  115. If %input%==5 Goto :Alarms
  116. If %input%==6 Goto :Connector
  117. If %input%==7 Goto :Calculator
  118. If %input%==8 Goto :Communications
  119. If %input%==9 Goto :Camera
  120. If %input%==10 Goto :Candy
  121. If %input%==11 Goto :ContactSupport
  122. If %input%==12 Goto :DrawboardPDF
  123. If %input%==13 Goto :FeedbackHub
  124. If %input%==14 Goto :ContactSupport
  125. If %input%==15 Goto :Office
  126. If %input%==16 Goto :GetStarted
  127. If %input%==17 Goto :ZuneMusic
  128. If %input%==18 Goto :Communicationsapps
  129. If %input%==19 Goto :Maps
  130. If %input%==20 Goto :Messaging
  131. If %input%==21 Goto :Solitaire
  132. If %input%==22 Goto :Store
  133. If %input%==23 Goto :Whiteboard
  134. If %input%==24 Goto :MixedReality
  135. If %input%==25 Goto :BingFinance
  136. If %input%==26 Goto :ZuneVideo
  137. If %input%==27 Goto :BingNews
  138. If %input%==28 Goto :OneDrive
  139. If %input%==29 Goto :OneNote
  140. If %input%==30 Goto :MSPaint
  141. If %input%==31 Goto :Phone
  142. If %input%==32 Goto :WindowsPhone
  143. If %input%==33 Goto :Photos
  144. If %input%==34 Goto :Skype
  145. If %input%==35 Goto :ScreenSketch
  146. If %input%==36 Goto :BingSports
  147. If %input%==37 Goto :StickyNotes
  148. If %input%==38 Goto :Sway
  149. If %input%==39 Goto :Tips
  150. If %input%==40 Goto :Twitter
  151. If %input%==41 Goto :SoundRecorder
  152. If %input%==42 Goto :Weather
  153. If %input%==43 Goto :XboxApp
  154. If %input%==44 Goto :XboxGamingOverlay
  155. If %input%==45 Goto :XboxOneSmartGlass
  156. If %input%==46 Goto :YourPhone
  157.  
  158.  
  159. Goto :EOF
  160.  
  161.  
  162.  
  163. :Current
  164.  
  165.  
  166.  
  167. Echo Get-AppXPackage ^| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} > Current.ps1
  168.  
  169. Powershell -ExecutionPolicy ByPass -File Current.ps1
  170.  
  171. Del Current.ps1
  172.  
  173. Goto :Choice
  174.  
  175. :All
  176.  
  177.  
  178.  
  179. Echo Get-AppXPackage -AllUsers ^| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} > All.ps1
  180.  
  181. Powershell -ExecutionPolicy ByPass -File All.ps1
  182.  
  183. Del All.ps1
  184.  
  185. Goto :Choice
  186.  
  187. :3DBuilder
  188.  
  189. Echo Get-AppxPackage *3DBuilder* ^| Remove-AppxPackage > 3DBuilder.ps1
  190.  
  191. Powershell -ExecutionPolicy ByPass -File 3DBuilder.ps1
  192.  
  193. Del 3DBuilder.ps1
  194.  
  195. Goto :Choice
  196.  
  197.  
  198. :3DViewer
  199.  
  200. Echo Get-AppxPackage *Microsoft3DViewer* ^| Remove-AppxPackage > 3DViewer.ps1
  201.  
  202. Powershell -ExecutionPolicy ByPass -File 3DViewer.ps1
  203.  
  204. Del 3DViewer.ps1
  205.  
  206. Goto :Choice
  207.  
  208.  
  209.  
  210. :Alarms
  211.  
  212. Echo Get-AppxPackage *WindowsAlarms* ^| Remove-AppxPackage > Alarms.ps1
  213.  
  214. Powershell -ExecutionPolicy ByPass -File Alarms.ps1
  215.  
  216. Del Alarms.ps1
  217.  
  218. Goto :Choice
  219.  
  220.  
  221.  
  222. :Connector
  223.  
  224. Echo Get-AppxPackage *AppConnector* ^| Remove-AppxPackage > Connector.ps1
  225.  
  226. Powershell -ExecutionPolicy ByPass -File Connector.ps1
  227.  
  228. Del Connector.ps1
  229.  
  230. Goto :Choice
  231.  
  232.  
  233.  
  234. :Calculator
  235.  
  236. Echo Get-AppxPackage *WindowsCalculator* ^| Remove-AppxPackage > Calculator.ps1
  237.  
  238. Powershell -ExecutionPolicy ByPass -File Calculator.ps1
  239.  
  240. Del Calculator.ps1
  241.  
  242. Goto :Choice
  243.  
  244.  
  245. :Communications
  246.  
  247. Echo Get-AppxPackage *windowscommunicationsapps* ^| Remove-AppxPackage > Communications.ps1
  248.  
  249. Powershell -ExecutionPolicy ByPass -File Communications.ps1
  250.  
  251. Del Communications.ps1
  252.  
  253. Goto :Choice
  254.  
  255.  
  256.  
  257. :Camera
  258.  
  259. Echo Get-AppxPackage *WindowsCamera* ^| Remove-AppxPackage > Camera.ps1
  260.  
  261. Powershell -ExecutionPolicy ByPass -File Camera.ps1
  262.  
  263. Del Camera.ps1
  264.  
  265. Goto :Choice
  266.  
  267.  
  268.  
  269.  
  270. :Candy
  271.  
  272. Echo Get-AppxPackage *CandyCrushSodaSaga* ^| Remove-AppxPackage > Candy.ps1
  273.  
  274. Powershell -ExecutionPolicy ByPass -File Candy.ps1
  275.  
  276. Del Candy.ps1
  277.  
  278. Goto :Choice
  279.  
  280.  
  281.  
  282.  
  283. :ContactSupport
  284.  
  285. Echo Get-AppxPackage *ContactSupport* ^| Remove-AppxPackage > ContactSupport.ps1
  286.  
  287. Powershell -ExecutionPolicy ByPass -File ContactSupport.ps1
  288.  
  289. Del ContactSupport.ps1
  290.  
  291. Goto :Choice
  292.  
  293.  
  294.  
  295.  
  296.  
  297. :DrawboardPDF
  298.  
  299. Echo Get-AppxPackage *DrawboardPDF* ^| Remove-AppxPackage > DrawboardPDF.ps1
  300.  
  301. Powershell -ExecutionPolicy ByPass -File DrawboardPDF.ps1
  302.  
  303. Del DrawboardPDF.ps1
  304.  
  305. Goto :Choice
  306.  
  307.  
  308.  
  309. :FeedbackHub
  310.  
  311. Echo Get-AppxPackage *WindowsFeedbackHub* ^| Remove-AppxPackage > FeedbackHub.ps1
  312.  
  313. Powershell -ExecutionPolicy ByPass -File FeedbackHub.ps1
  314.  
  315. Del FeedbackHub.ps1
  316.  
  317. Goto :Choice
  318.  
  319.  
  320.  
  321.  
  322. :ContactSupport
  323.  
  324. Echo Get-AppxPackage *ContactSupport* ^| Remove-AppxPackage > ContactSupport.ps1
  325.  
  326. Powershell -ExecutionPolicy ByPass -File ContactSupport.ps1
  327.  
  328. Del ContactSupport.ps1
  329.  
  330. Goto :Choice
  331.  
  332.  
  333.  
  334. :Office
  335.  
  336. Echo Get-AppxPackage *MicrosoftOfficeHub* ^| Remove-AppxPackage > Office.ps1
  337.  
  338. Powershell -ExecutionPolicy ByPass -File Office.ps1
  339.  
  340. Del Office.ps1
  341.  
  342. Goto :Choice
  343.  
  344.  
  345.  
  346.  
  347. :GetStarted
  348.  
  349. Echo Get-AppxPackage *GetStarted* ^| Remove-AppxPackage > GetStarted.ps1
  350.  
  351. Powershell -ExecutionPolicy ByPass -File GetStarted.ps1
  352.  
  353. Del GetStarted.ps1
  354.  
  355. Goto :Choice
  356.  
  357.  
  358.  
  359. :ZuneMusic
  360.  
  361. Echo Get-AppxPackage *ZuneMusic* ^| Remove-AppxPackage > ZuneMusic.ps1
  362.  
  363. Powershell -ExecutionPolicy ByPass -File ZuneMusic.ps1
  364.  
  365. Del ZuneMusic.ps1
  366.  
  367. Goto :Choice
  368.  
  369.  
  370.  
  371. :Communicationsapps
  372.  
  373. Echo Get-AppxPackage *windowscommunicationsapps* ^| Remove-AppxPackage > Communicationsapps.ps1
  374.  
  375. Powershell -ExecutionPolicy ByPass -File Communicationsapps.ps1
  376.  
  377. Del Communicationsapps.ps1
  378.  
  379. Goto :Choice
  380.  
  381.  
  382.  
  383. :Maps
  384.  
  385. Echo Get-AppxPackage *WindowsMaps* ^| Remove-AppxPackage > Maps.ps1
  386.  
  387. Powershell -ExecutionPolicy ByPass -File Maps.ps1
  388.  
  389. Del Maps.ps1
  390.  
  391. Goto :Choice
  392.  
  393.  
  394.  
  395.  
  396.  
  397. :Messaging
  398.  
  399. Echo Get-AppxPackage *Messaging* ^| Remove-AppxPackage > Messaging.ps1
  400.  
  401. Powershell -ExecutionPolicy ByPass -File Messaging.ps1
  402.  
  403. Del Messaging.ps1
  404.  
  405. Goto :Choice
  406.  
  407.  
  408.  
  409.  
  410.  
  411.  
  412. :Solitaire
  413.  
  414.  
  415. Echo Get-AppxPackage *MicrosoftSolitaireCollection* ^| Remove-AppxPackage > Solitaire.ps1
  416.  
  417. Powershell -ExecutionPolicy ByPass -File Solitaire.ps1
  418.  
  419. Del Solitaire.ps1
  420.  
  421. Goto :Choice
  422.  
  423.  
  424.  
  425. :Store
  426.  
  427. Echo Get-AppxPackage *WindowsStore* ^| Remove-AppxPackage > Store.ps1
  428.  
  429. Powershell -ExecutionPolicy ByPass -File Store.ps1
  430.  
  431. Del Store.ps1
  432.  
  433. Goto :Choice
  434.  
  435.  
  436.  
  437.  
  438.  
  439. :Whiteboard
  440.  
  441. Echo Get-AppxPackage *Microsoft.Whiteboard* ^| Remove-AppxPackage > Whiteboard.ps1
  442.  
  443. Powershell -ExecutionPolicy ByPass -File Whiteboard.ps1
  444.  
  445. Del Whiteboard.ps1
  446.  
  447. Goto :Choice
  448.  
  449.  
  450.  
  451.  
  452. :MixedReality
  453.  
  454. Echo Get-AppxPackage *Microsoft.MixedReality.Portal* ^| Remove-AppxPackage > MixedReality.ps1
  455.  
  456. Powershell -ExecutionPolicy ByPass -File MixedReality.ps1
  457.  
  458. Del MixedReality.ps1
  459.  
  460. Goto :Choice
  461.  
  462.  
  463.  
  464.  
  465. :BingFinance
  466.  
  467. Echo Get-AppxPackage *BingFinance* ^| Remove-AppxPackage > BingFinance.ps1
  468.  
  469. Powershell -ExecutionPolicy ByPass -File BingFinance.ps1
  470.  
  471. Del BingFinance.ps1
  472.  
  473. Goto :Choice
  474.  
  475.  
  476.  
  477.  
  478. :ZuneVideo
  479.  
  480.  
  481. Echo Get-AppxPackage *ZuneVideo* ^| Remove-AppxPackage > ZuneVideo.ps1
  482.  
  483. Powershell -ExecutionPolicy ByPass -File ZuneVideo.ps1
  484.  
  485. Del ZuneVideo.ps1
  486.  
  487. Goto :Choice
  488.  
  489.  
  490.  
  491.  
  492.  
  493. :BingNews
  494.  
  495. Echo Get-AppxPackage *BingNews* ^| Remove-AppxPackage > BingNews.ps1
  496.  
  497. Powershell -ExecutionPolicy ByPass -File BingNews.ps1
  498.  
  499. Del BingNews.ps1
  500.  
  501. Goto :Choice
  502.  
  503.  
  504.  
  505.  
  506. :OneDrive
  507.  
  508. Echo Get-AppxPackage *microsoft.microsoftskydrive* ^| Remove-AppxPackage > OneDrive.ps1
  509.  
  510. Powershell -ExecutionPolicy ByPass -File OneDrive.ps1
  511.  
  512. Del OneDrive.ps1
  513.  
  514. Goto :Choice
  515.  
  516.  
  517.  
  518.  
  519.  
  520.  
  521. :OneNote
  522.  
  523. Echo Get-AppxPackage *Office.OneNote* ^| Remove-AppxPackage > OneNote.ps1
  524.  
  525. Powershell -ExecutionPolicy ByPass -File OneNote.ps1
  526.  
  527. Del OneNote.ps1
  528.  
  529. Goto :Choice
  530.  
  531.  
  532.  
  533.  
  534. :MSPaint
  535.  
  536. Echo Get-AppxPackage *MSPaint* ^| Remove-AppxPackage > MSPaint.ps1
  537.  
  538. Powershell -ExecutionPolicy ByPass -File MSPaint.ps1
  539.  
  540. Del MSPaint.ps1
  541.  
  542. Goto :Choice
  543.  
  544.  
  545.  
  546.  
  547.  
  548. :Phone
  549.  
  550. Echo Get-AppxPackage *CommsPhone* ^| Remove-AppxPackage > Phone.ps1
  551.  
  552. Powershell -ExecutionPolicy ByPass -File Phone.ps1
  553.  
  554. Del Phone.ps1
  555.  
  556. Goto :Choice
  557.  
  558.  
  559.  
  560. :WindowsPhone
  561.  
  562. Echo Get-AppxPackage *WindowsPhone* ^| Remove-AppxPackage > WindowsPhone.ps1
  563.  
  564. Powershell -ExecutionPolicy ByPass -File WindowsPhone.ps1
  565.  
  566. Del WindowsPhone.ps1
  567.  
  568. Goto :Choice
  569.  
  570.  
  571.  
  572.  
  573. :Photos
  574.  
  575. Echo Get-AppxPackage *Photos* ^| Remove-AppxPackage > Photos.ps1
  576.  
  577. Powershell -ExecutionPolicy ByPass -File Photos.ps1
  578.  
  579. Del Photos.ps1
  580.  
  581. Goto :Choice
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588. :Skype
  589.  
  590. Echo Get-AppxPackage *SkypeApp* ^| Remove-AppxPackage > Skype.ps1
  591.  
  592. Powershell -ExecutionPolicy ByPass -File Skype.ps1
  593.  
  594. Del Skype.ps1
  595.  
  596. Goto :Choice
  597.  
  598.  
  599.  
  600. :ScreenSketch
  601.  
  602.  
  603. Echo Get-AppxPackage *Microsoft.ScreenSketch* ^| Remove-AppxPackage > ScreenSketch.ps1
  604.  
  605. Powershell -ExecutionPolicy ByPass -File ScreenSketch.ps1
  606.  
  607. Del ScreenSketch.ps1
  608.  
  609. Goto :Choice
  610.  
  611.  
  612.  
  613. :BingSports
  614.  
  615. Echo Get-AppxPackage *BingSports* ^| Remove-AppxPackage > BingSports.ps1
  616.  
  617. Powershell -ExecutionPolicy ByPass -File BingSports.ps1
  618.  
  619. Del BingSports.ps1
  620.  
  621. Goto :Choice
  622.  
  623.  
  624.  
  625.  
  626. :StickyNotes
  627.  
  628. Echo Get-AppxPackage *MicrosoftStickyNotes* ^| Remove-AppxPackage > StickyNotes.ps1
  629.  
  630. Powershell -ExecutionPolicy ByPass -File StickyNotes.ps1
  631.  
  632. Del StickyNotes.ps1
  633.  
  634. Goto :Choice
  635.  
  636.  
  637.  
  638. :Sway
  639.  
  640. Echo Get-AppxPackage *Office.Sway* ^| Remove-AppxPackage > Sway.ps1
  641.  
  642. Powershell -ExecutionPolicy ByPass -File Sway.ps1
  643.  
  644. Del Sway.ps1
  645.  
  646. Goto :Choice
  647.  
  648.  
  649.  
  650.  
  651.  
  652. :Tips
  653.  
  654. Echo Get-AppxPackage *Microsoft.Getstarted* ^| Remove-AppxPackage > Tips.ps1
  655.  
  656. Powershell -ExecutionPolicy ByPass -File Tips.ps1
  657.  
  658. Del Tips.ps1
  659.  
  660. Goto :Choice
  661.  
  662.  
  663.  
  664.  
  665. :Twitter
  666.  
  667. Echo Get-AppxPackage *Twitter* ^| Remove-AppxPackage > Twitter.ps1
  668.  
  669. Powershell -ExecutionPolicy ByPass -File Twitter.ps1
  670.  
  671. Del Twitter.ps1
  672.  
  673. Goto :Choice
  674.  
  675.  
  676.  
  677.  
  678. :SoundRecorder
  679.  
  680. Echo Get-AppxPackage *WindowsSoundRecorder* ^| Remove-AppxPackage > SoundRecorder.ps1
  681.  
  682. Powershell -ExecutionPolicy ByPass -File SoundRecorder.ps1
  683.  
  684. Del SoundRecorder.ps1
  685.  
  686. Goto :Choice
  687.  
  688.  
  689.  
  690.  
  691.  
  692. :Weather
  693.  
  694. Echo Get-AppxPackage *BingWeather* ^| Remove-AppxPackage > Weather.ps1
  695.  
  696. Powershell -ExecutionPolicy ByPass -File Weather.ps1
  697.  
  698. Del Weather.ps1
  699.  
  700. Goto :Choice
  701.  
  702.  
  703.  
  704.  
  705.  
  706. :XboxApp
  707.  
  708. Echo Get-AppxPackage *XboxApp* ^| Remove-AppxPackage > XboxApp.ps1
  709.  
  710. Powershell -ExecutionPolicy ByPass -File XboxApp.ps1
  711.  
  712. Del XboxApp.ps1
  713.  
  714. Goto :Choice
  715.  
  716.  
  717.  
  718.  
  719.  
  720. :XboxGamingOverlay
  721.  
  722. Echo Get-AppxPackage *Microsoft.XboxGamingOverlay* ^| Remove-AppxPackage > XboxGamingOverlay.ps1
  723.  
  724. Powershell -ExecutionPolicy ByPass -File XboxGamingOverlay.ps1
  725.  
  726. Del XboxGamingOverlay.ps1
  727.  
  728. Goto :Choice
  729.  
  730.  
  731.  
  732.  
  733.  
  734. :XboxOneSmartGlass
  735.  
  736. Echo Get-AppxPackage *XboxOneSmartGlass* ^| Remove-AppxPackage > XboxOneSmartGlass.ps1
  737.  
  738. Powershell -ExecutionPolicy ByPass -File XboxOneSmartGlass.ps1
  739.  
  740. Del XboxOneSmartGlass.ps1
  741.  
  742. Goto :Choice
  743.  
  744.  
  745.  
  746.  
  747.  
  748. :YourPhone
  749.  
  750. Echo Get-AppxPackage *Microsoft.YourPhone* ^| Remove-AppxPackage > YourPhone.ps1
  751.  
  752. Powershell -ExecutionPolicy ByPass -File YourPhone.ps1
  753.  
  754. Del YourPhone.ps1
  755.  
  756. Goto :Choice
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement