Windows 10: Any way to get useless games out of Windows 10 Enterprise?

Discus and support Any way to get useless games out of Windows 10 Enterprise? in Windows 10 Gaming to solve the problem; Why Microsoft included these with Windows 10 Enterprise is beyond me. 7 Enterprise didn't have the games enabled by default, but yet 10 Enterprise has... Discussion in 'Windows 10 Gaming' started by drfsupercenter, Feb 1, 2016.

  1. Any way to get useless games out of Windows 10 Enterprise?


    Why Microsoft included these with Windows 10 Enterprise is beyond me. 7 Enterprise didn't have the games enabled by default, but yet 10 Enterprise has Candy Crush, Minecraft and all of that garbage on every user's start menu by default *Mad

    Thanks to the useful PowerShell commands to remove the built-in Metro apps, I created a batch script that I run as the built-in Administrator account on every PC before letting an employee log onto it. Not incredibly relevant by itself, but if you're curious the script is here:

    Code: @echo off ::::::::::::::::::::::::::::::::::::::::: :: Automatically check & get admin rights ::::::::::::::::::::::::::::::::::::::::: CLS :checkPrivileges NET FILE 1>NUL 2>NUL if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges ) :getPrivileges if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges) echo This script needs admin rights to run. Doing so now. setlocal DisableDelayedExpansion set "batchPath=%~0" setlocal EnableDelayedExpansion ECHO Set UAC = CreateObject^("Shell.Application"^) > "%temp%\OEgetPrivileges.vbs" ECHO args = "ELEV " >> "%temp%\OEgetPrivileges.vbs" ECHO For Each strArg in WScript.Arguments >> "%temp%\OEgetPrivileges.vbs" ECHO args = args ^& strArg ^& " " >> "%temp%\OEgetPrivileges.vbs" ECHO Next >> "%temp%\OEgetPrivileges.vbs" ECHO UAC.ShellExecute "!batchPath!", args, "", "runas", 1 >> "%temp%\OEgetPrivileges.vbs" "%SystemRoot%\System32\WScript.exe" "%temp%\OEgetPrivileges.vbs" %* exit /B :gotPrivileges if '%1'=='ELEV' shift /1 setlocal & pushd . cd /d %~dp0 :::::::::::::::::::::::::::: ::START :::::::::::::::::::::::::::: cls SET runpath=%~dp0 echo This is a script to remove some of the built-in Windows Metro-style apps from Windows 10. It comes with a bunch of echo useless garbage like "Get Office", "Get Skype" and so on, which just take up space and don't do anything. echo. echo Please wait for this window to close itself before doing anything. It might take a while. echo You will see various text on the screen. This is fine. The window will close when the process is done. powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*officehub*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *officehub* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*skypeapp*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *skypeapp* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*getstarted*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *getstarted* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*zune*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *zune* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*solitairecollection*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *solitairecollection* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*onenote*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *onenote* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*3dbuilder*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *3dbuilder* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*xboxapp*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *xboxapp* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*people*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *people* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*bingsports*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *bingsports* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*candycrush*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *candycrush* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*twitter*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *twitter* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*sway*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *sway* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*commsphone"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *commsphone* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*messaging*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *messaging* | Remove-AppxPackage" powershell "Get-appxprovisionedpackage -online | where-object {$_.packagename -like """*connectivitystore*"""} | remove-appxprovisionedpackage -online" powershell "Get-AppxPackage *connectivitystore* | Remove-AppxPackage"[/quote] You'll notice that I opted to keep some of the apps people might find marginally useful at work, like News and Money. Of course they can remove those too if they want, but since this is a business we obviously don't want them messing around on Xbox and Sports and what have you.

    So anyway, since I have the commands in there twice, it does remove the app for all accounts and not just the one running it. However, when a domain user logs in, their start menu looks like this (I tested this in a VMWare machine, having no extra software installed, not even VMWare Tools)


    Any way to get useless games out of Windows 10 Enterprise? [​IMG]


    Notice how Candy Crush Soda, Minecraft, Twitter, some flipboard thing and... Photoshop(?) are still pinned to the start menu, while the ones I explicitly removed like Xbox and Sports are now empty space where the tiles would be.

    From this test VM, it looks like none of those apps were "installed", they weren't in the list view on the left, but I would assume if you clicked on one it would automatically reinstall itself. On other machines, I've seen it auto-download Twitter and Candy Crush as soon as somebody signs on for the first time.

    Is there any way, using PowerShell or similar, that I can just GET RID OF THESE APPS FOR GOOD?

    Our users are logging in with domain accounts, not Microsoft accounts, there should be no reason it goes and fetches this crap other than the fact that Microsoft, for some reason, felt it was a good idea to bundle it into build 1511 of Windows 10. It's odd that the built-in ones disappear perfectly like I want, but not the third-party ones. *Mad*Mad*Mad*Mad

    Edit: Somebody asked me once why we're using Windows 10 in a corporate environment and not LTSB (since that was made specifically for this sort of thing)
    The answer is simple, some of the new apps are actually useful and we don't mind people using them. Edge is a whole lot faster than IE, and that's omitted from LTSB. Weather's nice to pin to your start menu. We have computers we use as slideshow machines and the Photos app does a decent job there too. Etc.

    :)
     
    drfsupercenter, Feb 1, 2016
    #1

  2. Any way to get back the Win 7 games? Win 10 games, solitare are pure junk.

    The games on Win 10 are terrible. Bad display, no option to keep track of history with spider. Can't change deck. Just awful. Any way to get back Win 7 games. Those were great. Win 10 with 'sign in' BS and other junk are terrible.
     
    LawrenceSeabolt, Feb 1, 2016
    #2
  3. Clofking2 Win User
    Any way to get back the Win 7 games? Win 10 games, solitare are pure junk.

    Following Mann_Manohar's reply worked perfectly for me. It has picked up all my games from Windows 7 as is and rolled them into Windows 10.

    He suggests going to the webpage below which was suggested by D R H, which I have pasted below:

    How do I get my games from Win 7 back with win 10?

    http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_store/hoiw-do-i-get-my-games-from-win-7-back-with-win-10/fbe17f31-df65-417d-b2dc-2ec77e36528c


    Thanks Mann and D r H.
     
    Clofking2, Feb 1, 2016
    #3
  4. lx07 Win User

    Any way to get useless games out of Windows 10 Enterprise?

    lx07, Feb 2, 2016
    #4
  5. Hmm, is there a way, using a GPO, to just remove certain items from the start menu but not explicitly define anything else?

    We want people to have the ability to customize their start menus however they want, using the built-in apps or approved software we install (like Office), so simply specifying a layout as an XML isn't going to cut it.

    Or... I suppose this is a bit more of a Group Policy question than anything, is there a way to set a GPO to run only once, when the user first logs on, and never again? I suppose I could make an XML and have it apply the first time they log on (when their user profile is being created) but after that, it won't override whatever they set up.
     
    drfsupercenter, Feb 2, 2016
    #5
  6. Try Googling for info on how to use Windows PowerShell to remove the built-in Metro apps. Or get your hands on the 10 Enterprise LTSB edition, which has no Metro apps at all (well, technically, just 4, but they're all meant for corporate use). LTSB is a stripped-down version of 10 that also has a Cortana that doesn't have the online/Bing features (you don't need to sign in to use it and can still search for local files/apps/programs on your PC). There is also no Windows Store. On the other hand, you will only get feature updates every few years, just Security updates and drivers. The regular non-LTSB versions (Home/Pro) get feature updates/builds much more often. LTSB is meant for organizations/people who need stability and performance, without the extras, and is mainly meant for usage of regular desktop apps.
     
    AnonVendetta, Feb 2, 2016
    #6
  7. I did that. Read my first post.
     
    drfsupercenter, Feb 2, 2016
    #7
  8. Any way to get useless games out of Windows 10 Enterprise?

    My bad, sorry, I didn't see it that part of your post. I really do believe that LTSB is the best edition of 10 that there is though. I'm impressed by what I've seen so far.

    BTW, the Windows Store and pretty much any other Metro app can be manually installed in LTSB via PowerShell if you really need to use them, like the Photos app you mentioned. Just keep one of the "regular" editions of 10 installed in a VM and share the files in C:\Program Files\WindowsApps to your LTSB host. I have Windows Store right now and it runs/updates fine. I can install apps either via PowerShell or the Store. Everything just works. Of course, Microsoft will never officially support this in LTSB, but that's fine by me. I like to fix my own computing issues with innovative/unorthodox methods, supported or not.
     
    AnonVendetta, Feb 2, 2016
    #8
  9. Well, we already have about half our employees' computers on the regular Windows 10 Enterprise, so it would be a bit counter-productive to put others on LTSB, that just creates two different user bases.
     
    drfsupercenter, Feb 2, 2016
    #9
  10. I'm going to bump this just because I found an answer thanks to WinAero.

    There is a Group Policy setting (which I have now set for our domain):

    Computer Configuration -> Administrative Templates -> Windows Components -> Cloud Content
    Turn off Microsoft consumer experiences

    Enable that and the stupid games don't get downloaded.

    I will have to check on a new installation if they still show up on the start menu, but at least they don't AUTO DOWNLOAD THEMSELVES
     
    drfsupercenter, Sep 5, 2016
    #10
  11. jimbo45 Win User
    Hi there

    Someone's gone BONKERS at Ms -- why on earth would Enterprise have games on it whereas HOME which I presume is used by a load more people at HOME rather than work doesn't have these by default !!!!.

    Can't help you with the answer --just posted this reply as I'm astonished !!!!

    Maybe IT dept at Ms in Seattle has too much spare time on its hands.

    Cheers
    jimbo
     
    jimbo45, Sep 7, 2016
    #11
  12. Home likely has them too, but I haven't checked... I only use Pro at home, and it does the same thing.

    They aren't "preinstalled" per se - if you don't have an Internet connection you'll never see them. They just get downloaded once you've logged on.

    I'll install Home in a virtual machine and see what happens, just because I can.
     
    drfsupercenter, Sep 7, 2016
    #12
  13. lx07 Win User

    Any way to get useless games out of Windows 10 Enterprise?

    By all means try mate. The question (from 6 months ago so the OP has probably found a solution or got a new job) was why do you have these apps installed on Enterprise.

    You still have them (except on LTSB) and if you can't figure out how to remove what you don't want before making an image to deploy then you possibly have the wrong job.

    What is interesting (I think) is you can copy the initial tile layout from LTSB to C:\Users\Default on any other version and then you drop all the rubbish when you create a new user. The exact definition of the TileLayerDatabase is unclear though, at least to me.
     
  14. I'm the OP Any way to get useless games out of Windows 10 Enterprise? :p

    I was just bumping this thread with the answer, because I hadn't actually figured it out until then. I was just going around uninstalling the games from people's computers manually...

    OK, so using a VM of 10 Home...


    Any way to get useless games out of Windows 10 Enterprise? [​IMG]


    With no network connection, you see those little downloading icons that say "A great app is on its way!" (great being subjective of course...)


    Any way to get useless games out of Windows 10 Enterprise? [​IMG]


    No Candy Crush because as I mentioned, it's not actually in the install, it gets downloaded. No network means it can't do that.

    So now I connect the network.

    At first it looks promising, Twitter is not actually installed, just has a pinned shortcut that will install if clicked (and someone else on this forum told me "just unpin it, it only installs if you click it")


    Any way to get useless games out of Windows 10 Enterprise? [​IMG]


    So I unpin them all. Wait about 5 minutes. So far so good. Reboot a couple times, and... what's this?


    Any way to get useless games out of Windows 10 Enterprise? [​IMG]


    Same auto-downloading crap as the others. No Candy Crush yet, but you get the idea. It downloads them one at a time, and over a few different reboots too, trying to keep your apps "fresh" or some crap.

    That GPO I mentioned will stop it from doing that! Going to wipe that VM and try it again, setting the registry key and see if it works in Home (since Group Policy doesn't normally work on home versions)... I can confirm it works on Pro and Enterprise.
     
    drfsupercenter, Sep 7, 2016
    #14
  15. lx07 Win User
    I installed yesterday (for some other boring reason) Pro, Enterprise and LTSB.

    There is no difference really between Pro and Enterprise but LTSB doesn't have Edge (and all the other rubbish).

    I've also tried playing with the start menu layout but that never worked so well for me. This is a home user site so perhaps you'll not get a good answer but if I was you I'd start with LTSB and then add what you want. Removing things is a PITA (except for trivial apps).

    It depends what your job is I guess.
     
Thema:

Any way to get useless games out of Windows 10 Enterprise?

Loading...
  1. Any way to get useless games out of Windows 10 Enterprise? - Similar Threads - useless games Enterprise

  2. Is there any way to get older games to run on my Windows 10 Home PC?

    in Windows 10 Gaming
    Is there any way to get older games to run on my Windows 10 Home PC?: I have some older Steam games I have been wanting to install on my PC for some time now. It's a beefy computer, capable of running most modern games at max specs without needing to overclock. However, whenever I try to play games like Bioshock 2, Devil May Cry 4, Bayonetta,...
  3. Is there any way to get older games to run on my Windows 10 Home PC?

    in Windows 10 Software and Apps
    Is there any way to get older games to run on my Windows 10 Home PC?: I have some older Steam games I have been wanting to install on my PC for some time now. It's a beefy computer, capable of running most modern games at max specs without needing to overclock. However, whenever I try to play games like Bioshock 2, Devil May Cry 4, Bayonetta,...
  4. Any way to turn a headphone out into a line out?

    in Windows 10 Gaming
    Any way to turn a headphone out into a line out?: Is there any way for me to disable the headphone amp on the audio out jack and just have it be a line output with a fixed volume? Anything above 30% volume is way too loud and will blow the speakers on my hifi amplifier, on my previous set of speakers I had the hifi amp set...
  5. Any way to turn a headphone out into a line out?

    in Windows 10 Software and Apps
    Any way to turn a headphone out into a line out?: Is there any way for me to disable the headphone amp on the audio out jack and just have it be a line output with a fixed volume? Anything above 30% volume is way too loud and will blow the speakers on my hifi amplifier, on my previous set of speakers I had the hifi amp set...
  6. Any way to turn a headphone out into a line out?

    in Windows 10 Customization
    Any way to turn a headphone out into a line out?: Is there any way for me to disable the headphone amp on the audio out jack and just have it be a line output with a fixed volume? Anything above 30% volume is way too loud and will blow the speakers on my hifi amplifier, on my previous set of speakers I had the hifi amp set...
  7. Is there any way to get round corners in Windows 10?

    in Windows 10 Customization
    Is there any way to get round corners in Windows 10?: Hello there, I really wanted to ask if I could somehow get the Windows 11 rounded corners without actually changing the appearance of any other thing? I really like the Windows 11 corners but I can't upgrade to it because of hardware limitations so I want to try to make my...
  8. Is there any way to get round corners in Windows 10?

    in Windows 10 Gaming
    Is there any way to get round corners in Windows 10?: Hello there, I really wanted to ask if I could somehow get the Windows 11 rounded corners without actually changing the appearance of any other thing? I really like the Windows 11 corners but I can't upgrade to it because of hardware limitations so I want to try to make my...
  9. Is there any way to get round corners in Windows 10?

    in Windows 10 Software and Apps
    Is there any way to get round corners in Windows 10?: Hello there, I really wanted to ask if I could somehow get the Windows 11 rounded corners without actually changing the appearance of any other thing? I really like the Windows 11 corners but I can't upgrade to it because of hardware limitations so I want to try to make my...
  10. Any way to return to my enterprise version without any change?

    in Windows 10 Installation and Upgrade
    Any way to return to my enterprise version without any change?: HI about one month ago, i updated my windows 10 enterprise. but then i saw it is upgrading to 10 pro, which i absolutely didnt want. but after upgrade my windows is so messed up: my bluetooth is gone, i cant make any program as default, my new laptop's speed is very low,...