Advertisement
FreeBooter

Reset_Windows_10_Apps

Aug 22nd, 2022
1,389
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 12.98 KB | Fixit | 1 0
  1. :: Reset an App in Windows 10
  2.  
  3. :: Coded by FreeBooter
  4.  
  5. @Echo Off & Color 0E
  6.  
  7.  
  8.  
  9.  
  10.  
  11. (Net session >nul 2>&1)||(PowerShell start """%~0""" -verb RunAs & Exit /B)
  12.  
  13.  
  14.  
  15. :Choice
  16. Cls
  17. Echo.
  18. Echo 1. Reset 3D Builder App
  19. Echo.
  20. Echo 2. Reset 3D Viewer App
  21. Echo.
  22. Echo 3. Reset Alarms ^& Clock App
  23. Echo.
  24. Echo 4. Reset Calculator App
  25. Echo.
  26. Echo 5. Reset Calendar and Mail App
  27. Echo.
  28. Echo 6. Reset Camera App
  29. Echo.
  30. Echo 7. Reset Cortana App
  31. Echo.
  32. Echo 8. Reset Feedback Hub App
  33. Echo.
  34. Echo 9. Reset Game bar App
  35. Echo.
  36. Echo 10. Reset Get Help App
  37. Echo.
  38. Echo 11. Reset Get Started or Tips App
  39. Echo.
  40. Echo 12. Reset Groove Music App
  41. Echo.
  42. Echo 13. Reset Mail and Calendar App
  43. Echo.
  44. Echo 14. Reset Maps App
  45. Echo.
  46. Echo 15. Reset Microsoft Edge Stable App
  47. Echo.
  48. Echo 16. Reset Microsoft Edge Beta App
  49. Echo.
  50. Echo 17. Reset Microsoft Edge Canary App
  51. Echo.
  52. Echo 18. Reset Microsoft Edge Dev App
  53. Echo.
  54. Echo 19. Reset Microsoft News App
  55. Echo.
  56. Echo 20. Reset Microsoft Solitaire Collection App
  57. Echo.
  58. Echo 21. Reset Microsoft Store App
  59. Echo.
  60. Echo 22. Reset Microsoft To-Do App
  61. Echo.
  62. Echo 23. Reset Microsoft Whiteboard App
  63. Echo.
  64. Echo 24. Reset Mixed Reality Portal App
  65. Echo.
  66. Echo 25. Reset Mobile Plans App
  67. Echo.
  68. Echo 26. Reset Movies ^& TV App
  69. Echo.
  70. Echo 27. Reset Netflix App
  71. Echo.
  72. Echo 28. Reset Notepad App
  73. Echo.
  74. Echo 29. Reset Office App
  75. Echo.
  76. Echo 30. Reset OneNote App
  77. Echo.
  78. Echo 31. Reset Paint 3D App
  79. Echo.
  80. Echo 32. Reset People App
  81. Echo.
  82. Echo 33. Reset Photos App
  83. Echo.
  84. Echo 34. Reset Remote Desktop App
  85. Echo.
  86. Echo 35. Reset Scan App
  87. Echo.
  88. Echo 36. Reset Settings App
  89. Echo.
  90. Echo 37. Reset Skype App
  91. Echo.
  92. Echo 38. Reset Snip ^& Sketch App
  93. Echo.
  94. Echo 39. Reset Sticky Notes App
  95. Echo.
  96. Echo 40. Reset Sway App
  97. Echo.
  98. Echo 41. Reset Tips App
  99. Echo.
  100. Echo 42. Reset Twitter App
  101. Echo.
  102. Echo 43. Reset Voice Recorder App
  103. Echo.
  104. Echo 44. Reset Weather App
  105. Echo.
  106. Echo 45. Reset Windows Security App
  107. Echo.
  108. Echo 46. Reset Xbox Console Companion App
  109. Echo.
  110. Echo 47. Reset Xbox One SmartGlass App
  111. Echo.
  112. Echo 48. Reset Xbox Game Speech Window App
  113. Echo.
  114. Echo 49. Reset Your Phone App
  115. Echo.
  116.  
  117.  
  118. Set /p input="Type a number: "
  119.  
  120. If %input%==1 Goto :3DBuilder
  121. If %input%==2 Goto :3DViewer
  122. If %input%==3 Goto :Alarms
  123. If %input%==4 Goto :Calculator
  124. If %input%==5 Goto :Mail
  125. If %input%==6 Goto :Camera
  126. If %input%==7 Goto :Cortana
  127. If %input%==8 Goto :Feedback
  128. If %input%==9 Goto :Game
  129. If %input%==10 Goto :Help
  130. If %input%==11 Goto :Started
  131. If %input%==12 Goto :Groove
  132. If %input%==13 Goto :Calendar
  133. If %input%==14 Goto :Maps
  134. If %input%==15 Goto :Stable
  135. If %input%==16 Goto :Beta
  136. If %input%==17 Goto :Canary
  137. If %input%==18 Goto :Dev
  138. If %input%==19 Goto :News
  139. If %input%==20 Goto :Solitaire
  140. If %input%==21 Goto :Store
  141. If %input%==22 Goto :To-Do
  142. If %input%==23 Goto :Whiteboard
  143. If %input%==24 Goto :Reality
  144. If %input%==25 Goto :Mobile
  145. If %input%==26 Goto :Movies
  146. If %input%==27 Goto :Netflix
  147. If %input%==28 Goto :Notepad
  148. If %input%==29 Goto :Office
  149. If %input%==30 Goto :OneNote
  150. If %input%==31 Goto :Paint
  151. If %input%==32 Goto :People
  152. If %input%==33 Goto :Photos
  153. If %input%==34 Goto :Remote
  154. If %input%==35 Goto :Scan
  155. If %input%==36 Goto :Settings
  156. If %input%==37 Goto :Skype
  157. If %input%==38 Goto :Snip
  158. If %input%==39 Goto :Sticky
  159. If %input%==40 Goto :Sway
  160. If %input%==41 Goto :Tips
  161. If %input%==42 Goto :Twitter
  162. If %input%==43 Goto :Voice
  163. If %input%==44 Goto :Weather
  164. If %input%==45 Goto :Security
  165. If %input%==46 Goto :XboxConsole
  166. If %input%==47 Goto :XboxOne
  167. If %input%==48 Goto :XboxGame
  168. If %input%==49 Goto :Phone
  169.  
  170.  
  171. Goto :EOF
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196. :3DBuilder
  197.  
  198. Cd %TMP%
  199.  
  200. Echo Get-AppxPackage *Microsoft.3dbuilder* ^| Reset-AppxPackage > All.ps1
  201.  
  202. Powershell -ExecutionPolicy ByPass -File All.ps1
  203.  
  204. Del All.ps1
  205.  
  206. Goto :Choice
  207.  
  208.  
  209.  
  210.  
  211. :3DViewer
  212.  
  213. Cd %TMP%
  214.  
  215. Echo Get-AppxPackage *Microsoft3DViewer* ^| Reset-AppxPackage > All.ps1
  216.  
  217. Powershell -ExecutionPolicy ByPass -File All.ps1
  218.  
  219. Del All.ps1
  220.  
  221. Goto :Choice
  222.  
  223.  
  224.  
  225.  
  226. :Alarms
  227.  
  228. Cd %TMP%
  229.  
  230. Echo Get-AppxPackage *Microsoft.WindowsAlarms* ^| Reset-AppxPackage > All.ps1
  231.  
  232. Powershell -ExecutionPolicy ByPass -File All.ps1
  233.  
  234. Del All.ps1
  235.  
  236. Goto :Choice
  237.  
  238.  
  239.  
  240. :Calculator
  241.  
  242. Cd %TMP%
  243.  
  244. Echo Get-AppxPackage *Microsoft.WindowsCalculator* ^| Reset-AppxPackage > All.ps1
  245.  
  246. Powershell -ExecutionPolicy ByPass -File All.ps1
  247.  
  248. Del All.ps1
  249.  
  250. Goto :Choice
  251.  
  252.  
  253.  
  254.  
  255.  
  256. :Mail
  257.  
  258. Cd %TMP%
  259.  
  260. Echo Get-AppxPackage *microsoft.windowscommunicationsapps* ^| Reset-AppxPackage > All.ps1
  261.  
  262. Powershell -ExecutionPolicy ByPass -File All.ps1
  263.  
  264. Del All.ps1
  265.  
  266. Goto :Choice
  267.  
  268.  
  269.  
  270. :Camera
  271.  
  272. Cd %TMP%
  273.  
  274. Echo Get-AppxPackage *Microsoft.WindowsCamera* ^| Reset-AppxPackage > All.ps1
  275.  
  276. Powershell -ExecutionPolicy ByPass -File All.ps1
  277.  
  278. Del All.ps1
  279.  
  280. Goto :Choice
  281.  
  282.  
  283.  
  284.  
  285.  
  286. :Cortana
  287.  
  288. Cd %TMP%
  289.  
  290. Echo Get-AppxPackage *Microsoft.549981C3F5F10* ^| Reset-AppxPackage > All.ps1
  291.  
  292. Powershell -ExecutionPolicy ByPass -File All.ps1
  293.  
  294. Del All.ps1
  295.  
  296. Goto :Choice
  297.  
  298.  
  299.  
  300.  
  301.  
  302. :Feedback
  303.  
  304. Cd %TMP%
  305.  
  306. Echo Get-AppxPackage *Microsoft.WindowsFeedbackHub* ^| Reset-AppxPackage > All.ps1
  307.  
  308. Powershell -ExecutionPolicy ByPass -File All.ps1
  309.  
  310. Del All.ps1
  311.  
  312. Goto :Choice
  313.  
  314.  
  315.  
  316.  
  317.  
  318. :Game
  319.  
  320. Cd %TMP%
  321.  
  322. Echo Get-AppxPackage *Microsoft.XboxGameOverlay* ^| Reset-AppxPackage > All.ps1
  323.  
  324. Powershell -ExecutionPolicy ByPass -File All.ps1
  325.  
  326. Del All.ps1
  327.  
  328. Goto :Choice
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335. :Help
  336.  
  337. Cd %TMP%
  338.  
  339. Echo Get-AppxPackage *Microsoft.GetHelp* ^| Reset-AppxPackage > All.ps1
  340.  
  341. Powershell -ExecutionPolicy ByPass -File All.ps1
  342.  
  343. Del All.ps1
  344.  
  345. Goto :Choice
  346.  
  347.  
  348.  
  349.  
  350.  
  351. :Started
  352.  
  353.  
  354. Cd %TMP%
  355.  
  356. Echo Get-AppxPackage *Microsoft.Getstarted* ^| Reset-AppxPackage > All.ps1
  357.  
  358. Powershell -ExecutionPolicy ByPass -File All.ps1
  359.  
  360. Del All.ps1
  361.  
  362. Goto :Choice
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369. :Groove
  370.  
  371. Cd %TMP%
  372.  
  373. Echo Get-AppxPackage *Microsoft.ZuneMusic* ^| Reset-AppxPackage > All.ps1
  374.  
  375. Powershell -ExecutionPolicy ByPass -File All.ps1
  376.  
  377. Del All.ps1
  378.  
  379. Goto :Choice
  380.  
  381.  
  382.  
  383.  
  384. :Calendar
  385.  
  386. Cd %TMP%
  387.  
  388. Echo Get-AppxPackage *microsoft.windowscommunicationsapps* ^| Reset-AppxPackage > All.ps1
  389.  
  390. Powershell -ExecutionPolicy ByPass -File All.ps1
  391.  
  392. Del All.ps1
  393.  
  394. Goto :Choice
  395.  
  396.  
  397.  
  398.  
  399.  
  400. :Maps
  401.  
  402. Cd %TMP%
  403.  
  404. Echo Get-AppxPackage *Microsoft.WindowsMaps* ^| Reset-AppxPackage > All.ps1
  405.  
  406. Powershell -ExecutionPolicy ByPass -File All.ps1
  407.  
  408. Del All.ps1
  409.  
  410. Goto :Choice
  411.  
  412.  
  413.  
  414.  
  415.  
  416.  
  417. :Stable
  418.  
  419. Cd %TMP%
  420.  
  421. Echo Get-AppxPackage *Microsoft.MicrosoftEdge* ^| Reset-AppxPackage > All.ps1
  422.  
  423. Powershell -ExecutionPolicy ByPass -File All.ps1
  424.  
  425. Del All.ps1
  426.  
  427. Goto :Choice
  428.  
  429.  
  430.  
  431.  
  432.  
  433. :Beta
  434.  
  435. Cd %TMP%
  436.  
  437. Echo Get-AppxPackage *Microsoft.MicrosoftEdge.Beta* ^| Reset-AppxPackage > All.ps1
  438.  
  439. Powershell -ExecutionPolicy ByPass -File All.ps1
  440.  
  441. Del All.ps1
  442.  
  443. Goto :Choice
  444.  
  445.  
  446.  
  447.  
  448.  
  449. :Canary
  450.  
  451. Cd %TMP%
  452.  
  453. Echo Get-AppxPackage *Microsoft.MicrosoftEdge.Canary* ^| Reset-AppxPackage > All.ps1
  454.  
  455. Powershell -ExecutionPolicy ByPass -File All.ps1
  456.  
  457. Del All.ps1
  458.  
  459. Goto :Choice
  460.  
  461.  
  462.  
  463.  
  464.  
  465. :Dev
  466.  
  467. Cd %TMP%
  468.  
  469. Echo Get-AppxPackage *Microsoft.MicrosoftEdgeDevToolsClient* ^| Reset-AppxPackage > All.ps1
  470.  
  471. Powershell -ExecutionPolicy ByPass -File All.ps1
  472.  
  473. Del All.ps1
  474.  
  475. Goto :Choice
  476.  
  477.  
  478.  
  479.  
  480.  
  481.  
  482. :News
  483.  
  484. Cd %TMP%
  485.  
  486. Echo Get-AppxPackage *Microsoft.BingNews* ^| Reset-AppxPackage > All.ps1
  487.  
  488. Powershell -ExecutionPolicy ByPass -File All.ps1
  489.  
  490. Del All.ps1
  491.  
  492. Goto :Choice
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499. :Solitaire
  500.  
  501. Cd %TMP%
  502.  
  503. Echo Get-AppxPackage *Microsoft.MicrosoftSolitaireCollection* ^| Reset-AppxPackage > All.ps1
  504.  
  505. Powershell -ExecutionPolicy ByPass -File All.ps1
  506.  
  507. Del All.ps1
  508.  
  509. Goto :Choice
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  
  516. :Store
  517.  
  518. Cd %TMP%
  519.  
  520. Echo Get-AppxPackage *Microsoft.WindowsStore* ^| Reset-AppxPackage > All.ps1
  521.  
  522. Powershell -ExecutionPolicy ByPass -File All.ps1
  523.  
  524. Del All.ps1
  525.  
  526. Goto :Choice
  527.  
  528.  
  529.  
  530.  
  531.  
  532.  
  533.  
  534. :To-Do
  535.  
  536. Cd %TMP%
  537.  
  538. Echo Get-AppxPackage *Todos* ^| Reset-AppxPackage > All.ps1
  539.  
  540. Powershell -ExecutionPolicy ByPass -File All.ps1
  541.  
  542. Del All.ps1
  543.  
  544. Goto :Choice
  545.  
  546.  
  547.  
  548.  
  549.  
  550. :Whiteboard
  551.  
  552. Cd %TMP%
  553.  
  554. Echo Get-AppxPackage *Microsoft.Whiteboard* ^| Reset-AppxPackage > All.ps1
  555.  
  556. Powershell -ExecutionPolicy ByPass -File All.ps1
  557.  
  558. Del All.ps1
  559.  
  560. Goto :Choice
  561.  
  562.  
  563.  
  564.  
  565.  
  566. :Reality
  567.  
  568. Cd %TMP%
  569.  
  570. Echo Get-AppxPackage *Microsoft.MixedReality.Portal* ^| Reset-AppxPackage > All.ps1
  571.  
  572. Powershell -ExecutionPolicy ByPass -File All.ps1
  573.  
  574. Del All.ps1
  575.  
  576. Goto :Choice
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584. :Mobile
  585.  
  586. Cd %TMP%
  587.  
  588. Echo Get-AppxPackage *Microsoft.OneConnect* ^| Reset-AppxPackage > All.ps1
  589.  
  590. Powershell -ExecutionPolicy ByPass -File All.ps1
  591.  
  592. Del All.ps1
  593.  
  594. Goto :Choice
  595.  
  596.  
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603. :Movies
  604.  
  605. Cd %TMP%
  606.  
  607. Echo Get-AppxPackage *Microsoft.ZuneVideo* ^| Reset-AppxPackage > All.ps1
  608.  
  609. Powershell -ExecutionPolicy ByPass -File All.ps1
  610.  
  611. Del All.ps1
  612.  
  613. Goto :Choice
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620. :Netflix
  621.  
  622. Cd %TMP%
  623.  
  624. Echo Get-AppxPackage *Netflix* ^| Reset-AppxPackage > All.ps1
  625.  
  626. Powershell -ExecutionPolicy ByPass -File All.ps1
  627.  
  628. Del All.ps1
  629.  
  630. Goto :Choice
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638. :Notepad
  639.  
  640. Cd %TMP%
  641.  
  642. Echo Get-AppxPackage *Microsoft.WindowsNotepad* ^| Reset-AppxPackage > All.ps1
  643.  
  644. Powershell -ExecutionPolicy ByPass -File All.ps1
  645.  
  646. Del All.ps1
  647.  
  648. Goto :Choice
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655. :Office
  656.  
  657. Cd %TMP%
  658.  
  659. Echo Get-AppxPackage *Microsoft.MicrosoftOfficeHub* ^| Reset-AppxPackage > All.ps1
  660.  
  661. Powershell -ExecutionPolicy ByPass -File All.ps1
  662.  
  663. Del All.ps1
  664.  
  665. Goto :Choice
  666.  
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673. :OneNote
  674.  
  675. Cd %TMP%
  676.  
  677. Echo Get-AppxPackage *OneNote* ^| Reset-AppxPackage > All.ps1
  678.  
  679. Powershell -ExecutionPolicy ByPass -File All.ps1
  680.  
  681. Del All.ps1
  682.  
  683. Goto :Choice
  684.  
  685.  
  686.  
  687.  
  688.  
  689.  
  690. :Paint
  691.  
  692. Cd %TMP%
  693.  
  694. Echo Get-AppxPackage *Microsoft.MSPaint* ^| Reset-AppxPackage > All.ps1
  695.  
  696. Powershell -ExecutionPolicy ByPass -File All.ps1
  697.  
  698. Del All.ps1
  699.  
  700. Goto :Choice
  701.  
  702.  
  703.  
  704.  
  705.  
  706.  
  707. :People
  708.  
  709. Cd %TMP%
  710.  
  711. Echo Get-AppxPackage *Microsoft.People* ^| Reset-AppxPackage > All.ps1
  712.  
  713. Powershell -ExecutionPolicy ByPass -File All.ps1
  714.  
  715. Del All.ps1
  716.  
  717. Goto :Choice
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726. :Photos
  727.  
  728. Cd %TMP%
  729.  
  730. Echo Get-AppxPackage *Microsoft.Windows.Photos* ^| Reset-AppxPackage > All.ps1
  731.  
  732. Powershell -ExecutionPolicy ByPass -File All.ps1
  733.  
  734. Del All.ps1
  735.  
  736. Goto :Choice
  737.  
  738.  
  739.  
  740.  
  741.  
  742.  
  743.  
  744.  
  745. :Remote
  746.  
  747. Cd %TMP%
  748.  
  749. Echo Get-AppxPackage *Microsoft.RemoteDesktop* ^| Reset-AppxPackage > All.ps1
  750.  
  751. Powershell -ExecutionPolicy ByPass -File All.ps1
  752.  
  753. Del All.ps1
  754.  
  755. Goto :Choice
  756.  
  757.  
  758.  
  759.  
  760.  
  761.  
  762.  
  763.  
  764. :Scan
  765.  
  766. Cd %TMP%
  767.  
  768. Echo Get-AppxPackage *WindowsScan* ^| Reset-AppxPackage > All.ps1
  769.  
  770. Powershell -ExecutionPolicy ByPass -File All.ps1
  771.  
  772. Del All.ps1
  773.  
  774. Goto :Choice
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782. :Settings
  783.  
  784. Cd %TMP%
  785.  
  786. Echo Get-AppxPackage *windows.immersivecontrolpanel* ^| Reset-AppxPackage > All.ps1
  787.  
  788. Powershell -ExecutionPolicy ByPass -File All.ps1
  789.  
  790. Del All.ps1
  791.  
  792. Goto :Choice
  793.  
  794.  
  795.  
  796.  
  797.  
  798.  
  799.  
  800. :Skype
  801.  
  802. Cd %TMP%
  803.  
  804. Echo Get-AppxPackage *Microsoft.SkypeApp* ^| Reset-AppxPackage > All.ps1
  805.  
  806. Powershell -ExecutionPolicy ByPass -File All.ps1
  807.  
  808. Del All.ps1
  809.  
  810. Goto :Choice
  811.  
  812.  
  813.  
  814.  
  815.  
  816.  
  817.  
  818.  
  819. :Snip
  820.  
  821. Cd %TMP%
  822.  
  823. Echo Get-AppxPackage *Microsoft.ScreenSketch* ^| Reset-AppxPackage > All.ps1
  824.  
  825. Powershell -ExecutionPolicy ByPass -File All.ps1
  826.  
  827. Del All.ps1
  828.  
  829. Goto :Choice
  830.  
  831.  
  832.  
  833.  
  834.  
  835. :Sticky
  836.  
  837. Cd %TMP%
  838.  
  839. Echo Get-AppxPackage *Microsoft.MicrosoftStickyNotes* ^| Reset-AppxPackage > All.ps1
  840.  
  841. Powershell -ExecutionPolicy ByPass -File All.ps1
  842.  
  843. Del All.ps1
  844.  
  845. Goto :Choice
  846.  
  847.  
  848.  
  849.  
  850.  
  851.  
  852.  
  853.  
  854. :Sway
  855.  
  856. Cd %TMP%
  857.  
  858. Echo Get-AppxPackage *Office.Sway* ^| Reset-AppxPackage > All.ps1
  859.  
  860. Powershell -ExecutionPolicy ByPass -File All.ps1
  861.  
  862. Del All.ps1
  863.  
  864. Goto :Choice
  865.  
  866.  
  867.  
  868.  
  869.  
  870.  
  871.  
  872.  
  873. :Tips
  874.  
  875. Cd %TMP%
  876.  
  877. Echo Get-AppxPackage *Microsoft.Getstarted* ^| Reset-AppxPackage > All.ps1
  878.  
  879. Powershell -ExecutionPolicy ByPass -File All.ps1
  880.  
  881. Del All.ps1
  882.  
  883. Goto :Choice
  884.  
  885.  
  886.  
  887.  
  888.  
  889.  
  890. :Twitter
  891.  
  892. Cd %TMP%
  893.  
  894. Echo Get-AppxPackage *Twitter* ^| Reset-AppxPackage > All.ps1
  895.  
  896. Powershell -ExecutionPolicy ByPass -File All.ps1
  897.  
  898. Del All.ps1
  899.  
  900. Goto :Choice
  901.  
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908. :Voice
  909.  
  910. Cd %TMP%
  911.  
  912. Echo Get-AppxPackage *Microsoft.WindowsSoundRecorder* ^| Reset-AppxPackage > All.ps1
  913.  
  914. Powershell -ExecutionPolicy ByPass -File All.ps1
  915.  
  916. Del All.ps1
  917.  
  918. Goto :Choice
  919.  
  920.  
  921.  
  922.  
  923.  
  924.  
  925.  
  926. :Weather
  927.  
  928. Cd %TMP%
  929.  
  930. Echo Get-AppxPackage *Microsoft.BingWeather* ^| Reset-AppxPackage > All.ps1
  931.  
  932. Powershell -ExecutionPolicy ByPass -File All.ps1
  933.  
  934. Del All.ps1
  935.  
  936. Goto :Choice
  937.  
  938.  
  939.  
  940.  
  941.  
  942.  
  943.  
  944. :Security
  945.  
  946. Cd %TMP%
  947.  
  948. Echo Get-AppxPackage *Microsoft.Windows.SecHealthUI* ^| Reset-AppxPackage > All.ps1
  949.  
  950. Powershell -ExecutionPolicy ByPass -File All.ps1
  951.  
  952. Del All.ps1
  953.  
  954. Goto :Choice
  955.  
  956.  
  957.  
  958.  
  959.  
  960.  
  961.  
  962. :XboxConsole
  963.  
  964. Cd %TMP%
  965.  
  966. Echo Get-AppxPackage *Microsoft.XboxApp* ^| Reset-AppxPackage > All.ps1
  967.  
  968. Powershell -ExecutionPolicy ByPass -File All.ps1
  969.  
  970. Del All.ps1
  971.  
  972. Goto :Choice
  973.  
  974.  
  975.  
  976.  
  977.  
  978.  
  979. :XboxOne
  980.  
  981. Cd %TMP%
  982.  
  983. Echo Get-AppxPackage *XboxOneSmartGlass* ^| Reset-AppxPackage > All.ps1
  984.  
  985. Powershell -ExecutionPolicy ByPass -File All.ps1
  986.  
  987. Del All.ps1
  988.  
  989. Goto :Choice
  990.  
  991.  
  992.  
  993.  
  994.  
  995.  
  996.  
  997. :XboxGame
  998.  
  999. Cd %TMP%
  1000.  
  1001. Echo Get-AppxPackage *Microsoft.XboxSpeechToTextOverlay* ^| Reset-AppxPackage > All.ps1
  1002.  
  1003. Powershell -ExecutionPolicy ByPass -File All.ps1
  1004.  
  1005. Del All.ps1
  1006.  
  1007. Goto :Choice
  1008.  
  1009.  
  1010.  
  1011.  
  1012.  
  1013. :Phone
  1014.  
  1015. Cd %TMP%
  1016.  
  1017. Echo Get-AppxPackage *Microsoft.YourPhone* ^| Reset-AppxPackage > All.ps1
  1018.  
  1019. Powershell -ExecutionPolicy ByPass -File All.ps1
  1020.  
  1021. Del All.ps1
  1022.  
  1023. Goto :Choice
  1024.  
  1025.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement