How to disable Windows Store apps in Windows 10 Pro

Discussion in 'Windows 10' started by yousif, Sep 16, 2018.

  1. yousif

    yousif MDL Member

    Joined:
    Dec 14, 2013
    Messages:
    194
    Likes Received:
    108
    Trophy Points:
    10
    Hi everyone,

    As mentioned in the tittle, I really need to disable Windows Store apps in Windows 10 Pro edition (Latest stable + Latest Insider) as I tried the Group Policy option and registry with no luck.

    Appreciate your support.
     
  2. endbase

    endbase MDL Guru

    Joined:
    Aug 12, 2012
    Messages:
    4,522
    Likes Received:
    1,602
    Trophy Points:
    150
    My advise will be take a Pro windows 10 iso and remove the app's with MSMG toolkit and then do an inplace upgrade you will lose the app's that way
     
  3. l3ktion

    l3ktion MDL Novice

    Joined:
    May 8, 2017
    Messages:
    7
    Likes Received:
    0
    Trophy Points:
    0
    hey. can i still use the regular windows updater to install updates? will it add the metro apps and other windows components back?
     
  4. PsychedelicShaman

    PsychedelicShaman MDL Member

    Joined:
    Dec 4, 2017
    Messages:
    133
    Likes Received:
    315
    Trophy Points:
    10
    If you remove UWP (metro) apps, then feature updates will bring them back on, unfortunately. Every 6 months there is "feature update" which acts as a "system refresh" - meaning it will bring back UWP apps and reset all your settings to default values.
    That's why me and many other guys here are using Enterprise LTSB edition only, it's the only one that doesn't have this problem. :)
     
  5. Tiger-1

    Tiger-1 MDL Guru

    Joined:
    Oct 18, 2014
    Messages:
    6,208
    Likes Received:
    7,533
    Trophy Points:
    210
  6. yousif

    yousif MDL Member

    Joined:
    Dec 14, 2013
    Messages:
    194
    Likes Received:
    108
    Trophy Points:
    10
    I just want to prevent my kids from reinstalling Minecraft from Windows Store!
     
  7. Feniksrising

    Feniksrising MDL Member

    Joined:
    Nov 27, 2016
    Messages:
    174
    Likes Received:
    129
    Trophy Points:
    10

    Spending a day tweaking Home only to have MS destroy everything.
     
  8. BAU

    BAU MDL Addicted

    Joined:
    Feb 10, 2009
    Messages:
    943
    Likes Received:
    2,042
    Trophy Points:
    30
    #8 BAU, Sep 24, 2018
    Last edited by a moderator: Sep 24, 2018
    You can block Store via ifeo (works in home, too) - in command prompt (admin):
    Code:
    reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\WinStore.App.exe" /v Debugger /d NUL /f
    taskkill /im WinStore.App.exe /f
    
    You can hinder all UWP applications (can't type in them and many will force-close including edge but core built-in ones will work: calc, calendar, settings):
    Code:
    reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\RuntimeBroker.exe" /v Debugger /d NUL /f
    taskkill /im RuntimeBroker.exe /f
    
    You can block all UWP applications including built-in:
    Code:
    reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ApplicationFrameHost.exe" /v Debugger /d NUL /f
    taskkill /im ApplicationFrameHost.exe /f
    
    Undo (same order):
    Code:
    reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\WinStore.App.exe" /f
    reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\RuntimeBroker.exe" /f
    reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ApplicationFrameHost.exe" /f
    
    You can install Minecraft yourself and see what exe it launches, then block it specifically like above.

    But you're a s**tty parent for not allowing your kids to play Minecraft, imho.
     
  9. d5aqoëp

    d5aqoëp MDL Senior Member

    Joined:
    Jan 19, 2017
    Messages:
    389
    Likes Received:
    240
    Trophy Points:
    10
    Why not install the upcoming LTSC version? Hehe
     
  10. yousif

    yousif MDL Member

    Joined:
    Dec 14, 2013
    Messages:
    194
    Likes Received:
    108
    Trophy Points:
    10
    Thanks! It's school season that's why so I can unlock it again in weekends. Your method blocked even Settings so it didn't work as mentioned but thanks anyway.
     
  11. halasz

    halasz MDL Member

    Joined:
    Jan 13, 2013
    Messages:
    117
    Likes Received:
    35
    Trophy Points:
    10
    #11 halasz, Sep 24, 2018
    Last edited: Sep 24, 2018
    You can just block it in the firewall. Go to Firewall > Advanced Settings > Outbound rules, enable the "Windows Store" rule (the private one is enough - you probably don't need domain) and then double click on it and set it to "Block the connection". Then when they try to access the Store they will get a "Check your internet connection" error and they can't download anything.

    If you want to allow access just go to the same rule and disable it and they can access Store as normal but obviously you'd have to delete anything they downloaded afterwards if you didn't like it.

    You could set them up as a child MS account and put their age as less than 7 (the age for Minecraft) but it wouldn't stop them downloading apps that only require age 3 (like OneNote or CandyCrush for example) so it is a pretty weak solution.
     
  12. yousif

    yousif MDL Member

    Joined:
    Dec 14, 2013
    Messages:
    194
    Likes Received:
    108
    Trophy Points:
    10
     
  13. BAU

    BAU MDL Addicted

    Joined:
    Feb 10, 2009
    Messages:
    943
    Likes Received:
    2,042
    Trophy Points:
    30
    There are line breaks between them and comments,ofc it will break settings if you run all lines (the ApplicationFrameHost one breaks all including settings) :p