Advertisement
MuhamaD-BosS

Remove All Built in Windows 10 Apps

Sep 7th, 2020
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1.  
  2. Home
  3. How-to
  4. Remove All Built in Windows 10 Apps
  5. Remove All Built in Windows 10 Apps
  6. admin August 15, 2020 How-to No Comments
  7.  
  8. Remove All Built in Windows 10 Apps
  9. So you want to know How to Uninstall and Restore Windows 10’s Built-in Apps in Windows 10? I will show you step by step on removing unwanted apps in windows 10.
  10.  
  11. Remove All User Packages
  12. Get-AppxPackage | Remove-AppxPackage
  13.  
  14. completely uninstall OneDrive:
  15.  
  16. taskkill /f /im OneDrive.exe
  17.  
  18. %SystemRoot%\SysWOW64\OneDriveSetup.exe /uninstall
  19.  
  20. 10AppsManager for Windows 10
  21.  
  22. Get-AppxPackage Microsoft.Windows.ParentalControls | Remove-AppxPackage
  23.  
  24. Get-AppxPackage Windows.ContactSupport | Remove-AppxPackage
  25.  
  26. Get-AppxPackage Microsoft.Xbox* | Remove-AppxPackage
  27.  
  28. Get-AppxPackage microsoft.windowscommunicationsapps | Remove-AppxPackage # Mail and Calendar
  29.  
  30. Get-AppxPackage Microsoft.Windows.Photos | Remove-AppxPackage
  31.  
  32. Get-AppxPackage Microsoft.WindowsCamera | Remove-AppxPackage
  33.  
  34. Get-AppxPackage Microsoft.SkypeApp | Remove-AppxPackage
  35.  
  36. Get-AppxPackage Microsoft.Zune* | Remove-AppxPackage
  37.  
  38. Get-AppxPackage Microsoft.WindowsPhone | Remove-AppxPackage # Phone Companion
  39.  
  40. Get-AppxPackage Microsoft.WindowsMaps | Remove-AppxPackage
  41.  
  42. Get-AppxPackage Microsoft.Office.OneNote | Remove-AppxPackage
  43.  
  44. Get-AppxPackage Microsoft.Office.Sway | Remove-AppxPackage
  45.  
  46. Get-AppxPackage Microsoft.Appconnector | Remove-AppxPackage
  47.  
  48. Get-AppxPackage Microsoft.WindowsFeedback* | Remove-AppxPackage
  49.  
  50. Get-AppxPackage Microsoft.Windows.FeatureOnDemand.InsiderHub | Remove-AppxPackage
  51.  
  52. Get-AppxPackage Microsoft.Windows.Cortana | Remove-AppxPackage
  53.  
  54. Get-AppxPackage Microsoft.People | Remove-AppxPackage
  55.  
  56. Get-AppxPackage Microsoft.Bing* | Remove-AppxPackage # Money, Sports, News, Finance and Weather
  57.  
  58. Get-AppxPackage Microsoft.Getstarted | Remove-AppxPackage
  59.  
  60. Get-AppxPackage Microsoft.MicrosoftOfficeHub | Remove-AppxPackage
  61.  
  62. Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage
  63.  
  64. Get-AppxPackage Microsoft.WindowsSoundRecorder | Remove-AppxPackage
  65.  
  66. Get-AppxPackage Microsoft.3DBuilder | Remove-AppxPackage
  67.  
  68. Get-AppxPackage Microsoft.Messaging | Remove-AppxPackage
  69.  
  70. Get-AppxPackage Microsoft.CommsPhone | Remove-AppxPackage
  71.  
  72. Get-AppxPackage Microsoft.Advertising.Xaml | Remove-AppxPackage
  73.  
  74. Get-AppxPackage Microsoft.Windows.SecondaryTileExperience | Remove-AppxPackage
  75.  
  76. Get-AppxPackage Microsoft.Windows.ContentDeliveryManager | Remove-AppxPackage
  77.  
  78. Get-AppxPackage Microsoft.Windows.CloudExperienceHost | Remove-AppxPackage
  79.  
  80. Get-AppxPackage Microsoft.Windows.ShellExperienceHost | Remove-AppxPackage
  81.  
  82. Get-AppxPackage Microsoft.BioEnrollment | Remove-AppxPackage
  83.  
  84. Get-AppxPackage Microsoft.OneConnect | Remove-AppxPackage
  85.  
  86. Get-AppxPackage *Twitter* | Remove-AppxPackage
  87.  
  88. Get-AppxPackage king.com.CandyCrushSodaSaga | Remove-AppxPackage
  89.  
  90. Get-AppxPackage flaregamesGmbH.RoyalRevolt2 | Remove-AppxPackage
  91.  
  92. Get-AppxPackage *Netflix | Remove-AppxPackage
  93.  
  94. Get-AppxPackage Facebook.Facebook | Remove-AppxPackage
  95.  
  96. Get-AppxPackage Microsoft.MinecraftUWP | Remove-AppxPackage
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement