Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SethCalkins/d2ae93536bd15a8ba4b95d9e0a24b64c to your computer and use it in GitHub Desktop.
Save SethCalkins/d2ae93536bd15a8ba4b95d9e0a24b64c to your computer and use it in GitHub Desktop.

Revisions

  1. @masterjeef masterjeef revised this gist Sep 9, 2016. No changes.
  2. @masterjeef masterjeef created this gist Sep 9, 2016.
    84 changes: 84 additions & 0 deletions remove-windows10-crap.ps1
    Original 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”}
    #>