.reg or .bat file to remove all default installed apps, including store

Discussion in 'Scripting' started by SightUp, Dec 23, 2015.

  1. SightUp

    SightUp MDL Senior Member

    Aug 17, 2010
    259
    12
    10
    Has anyone made a standalone .reg file or .bat file that uninstalls and removes the default apps?
     
  2. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,194
    84,731
    340
    waiting your next obvious request thread :mushy:
     
  3. SightUp

    SightUp MDL Senior Member

    Aug 17, 2010
    259
    12
    10
    No wonder why you have 5,183 post at this time. You post less than helpful responses.
     
  4. kuroda

    kuroda MDL Senior Member

    Aug 25, 2012
    445
    32
    10
  5. Garbellano

    Garbellano MDL Addicted

    Aug 13, 2012
    947
    248
    30
    Get-AppxPackage -allusers | Remove-AppxPackage
     
  6. SightUp

    SightUp MDL Senior Member

    Aug 17, 2010
    259
    12
    10
  7. fightininsane

    fightininsane MDL Novice

    Oct 31, 2007
    9
    3
    0
    Entering the following code into the PowerShell will hide each application you enter.
    Get-AppxPackage -name “Microsoft.ZuneMusic” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.Music.Preview” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.XboxGameCallableUI” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.XboxIdentityProvider” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.BingTravel” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.BingHealthAndFitness” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.BingFoodAndDrink” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.People” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.BingFinance” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.3DBuilder” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.WindowsCalculator” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.BingNews” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.XboxApp” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.BingSports” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.WindowsCamera” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.Getstarted” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.Office.OneNote” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.WindowsMaps” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.MicrosoftSolitaireCollection” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.MicrosoftOfficeHub” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.BingWeather” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.BioEnrollment” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.WindowsStore” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.Windows.Photos” | Remove-AppxPackage
    Get-AppxPackage -name “Microsoft.WindowsPhone” | Remove-AppxPackage
     
  8. WardocsRevenge

    WardocsRevenge MDL Expert

    Jan 13, 2012
    1,848
    644
    60
    just use ccleaner
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. SightUp

    SightUp MDL Senior Member

    Aug 17, 2010
    259
    12
    10
    I want to double click a reg file or bat file and have it do all of this for me!
     
  10. mechanicweb

    mechanicweb MDL Member

    Sep 1, 2011
    196
    17
    10
    CC Cleaner can do that?
     
  11. jonlurker

    jonlurker MDL Novice

    Aug 8, 2015
    7
    4
    0
    Yep go to CCleaner > Tools > Uninstall (Sort by publisher , under Microsoft you can uninstall all metro apps , Store itself also)
     
  12. SightUp

    SightUp MDL Senior Member

    Aug 17, 2010
    259
    12
    10
    When it does this, does it do it only for your account or all accounts?
     
  13. scaramonga

    scaramonga MDL Senior Member

    Oct 27, 2012
    426
    261
    10
    #13 scaramonga, Dec 24, 2015
    Last edited: Dec 24, 2015
    Yup. Used that to get rid of Groove, Films & TV, and Photos, which all insisted on starting whenever they felt like it in background, for no apparent reason.

    Now, system 'settings' keeps doing same thing?, but that's another thing altogether.
     
  14. cajg

    cajg MDL Novice

    Jan 4, 2010
    45
    5
    0
    FFS, use Yasser's Toggle Tweaker :tea:
     
  15. SPDIF

    SPDIF MDL Junior Member

    Mar 30, 2014
    90
    47
    0
    #15 SPDIF, Dec 24, 2015
    Last edited: Dec 24, 2015
    Yes that is how abbodi1406 behave with new members.
    He does nothing else then laugh in the face from people that have some question.
    Yes an easy way to have 5000+ posts on your name...
    Specially with new members.:g:
    You could see in many posts from him he always behave the same; silly...
    Same did happen with me, just laughed me away in the face.
    Could only say one thing to him; if you have nothing useful to post, then please leave and go disturb someone else.:D

    NOT As you there are people that give a good response and help! Thank you all, i had some like same question about this!
    Al solution posted here works good!:worthy:
    Thanks to other forum users that REALLY try to HELP you!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. Garbellano

    Garbellano MDL Addicted

    Aug 13, 2012
    947
    248
    30
    Why you dont just use the command I posted?!
    This works for the account you are logged:

    Get-AppxPackage | Remove-AppxPackage

    Delete every single app, including Store.