Last active
June 26, 2023 08:10
-
-
Save masterjeef/ccf977a2d07c2709ffa04b07805460d2 to your computer and use it in GitHub Desktop.
Revisions
-
masterjeef revised this gist
Sep 9, 2016 . No changes.There are no files selected for viewing
-
masterjeef created this gist
Sep 9, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,84 @@ <# This is a helpful script that will remove the default Windows 10 garbage from your computer * Comment out any apps that you might want to keep * Don't forget to run as admin #> # 3d Builder Get-AppxPackage *3dbuilder* | Remove-AppxPackage # Windows Alarms Get-AppxPackage *windowsalarms* | Remove-AppxPackage # Windows Calculator Get-AppxPackage *windowscalculator* | Remove-AppxPackage # Windows Communications Apps Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage # Windows Camera Get-AppxPackage *windowscamera* | Remove-AppxPackage # Office Hub Get-AppxPackage *officehub* | Remove-AppxPackage # Skype App Get-AppxPackage *skypeapp* | Remove-AppxPackage # Get Started Get-AppxPackage *getstarted* | Remove-AppxPackage # Zune Music Get-AppxPackage *zunemusic* | Remove-AppxPackage # Windows Maps Get-AppxPackage *windowsmaps* | Remove-AppxPackage # Solitaire Collection Get-AppxPackage *solitairecollection* | Remove-AppxPackage # Bing Finance Get-AppxPackage *bingfinance* | Remove-AppxPackage # Zune Video Get-AppxPackage *zunevideo* | Remove-AppxPackage # Bing News Get-AppxPackage *bingnews* | Remove-AppxPackage # OneNote Get-AppxPackage *onenote* | Remove-AppxPackage # People Get-AppxPackage *people* | Remove-AppxPackage # Windows Phone Get-AppxPackage *windowsphone* | Remove-AppxPackage # Photos Get-AppxPackage *photos* | Remove-AppxPackage # Windows Store Get-AppxPackage *windowsstore* | Remove-AppxPackage # Bing Sports Get-AppxPackage *bingsports* | Remove-AppxPackage # Sound Recorder Get-AppxPackage *soundrecorder* | Remove-AppxPackage # Bing Weather Get-AppxPackage *bingweather* | Remove-AppxPackage # Xbox App Get-AppxPackage *xboxapp* | Remove-AppxPackage <# # Reversal Script (Run this line to install the apps again) Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”} #>