Jump to content

How to get rid of Candy Crush Soda Saga and other Windows 10 Start Menu junk for good!


Recommended Posts

Posted
Unfortunately I think the only way to get the tiles to disappear permanently would be with a new profile (now that the "Turn off Microsoft consumer experiences" policy has been enabled).

 

Any profiles that have already had the CandyCrush etc. tiles add to their Start Menu seem to ignore the policy.

 

What about executing the below user Logon script?

 

Get-AppxPackage -AllUsers "2414FC7A.Viber" | Remove-AppxPackage
Get-AppxPackage -AllUsers "41038Axilesoft.ACGMediaPlayer" | Remove-AppxPackage
Get-AppxPackage -AllUsers "46928bounde.EclipseManager" | Remove-AppxPackage
Get-AppxPackage -AllUsers "4DF9E0F8.Netflix" | Remove-AppxPackage
Get-AppxPackage -AllUsers "64885BlueEdge.OneCalendar" | Remove-AppxPackage
Get-AppxPackage -AllUsers "7EE7776C.LinkedInforWindows" | Remove-AppxPackage
Get-AppxPackage -AllUsers "828B5831.HiddenCityMysteryofShadows" | Remove-AppxPackage
Get-AppxPackage -AllUsers "89006A2E.AutodeskSketchBook" | Remove-AppxPackage
Get-AppxPackage -AllUsers "9E2F88E3.Twitter" | Remove-AppxPackage
Get-AppxPackage -AllUsers "A278AB0D.DisneyMagicKingdoms" | Remove-AppxPackage
Get-AppxPackage -AllUsers "A278AB0D.DragonManiaLegends" | Remove-AppxPackage
Get-AppxPackage -AllUsers "A278AB0D.MarchofEmpires" | Remove-AppxPackage
Get-AppxPackage -AllUsers "ActiproSoftwareLLC.562882FEEB491" | Remove-AppxPackage
Get-AppxPackage -AllUsers "AdobeSystemsIncorporated.AdobePhotoshopExpress" | Remove-AppxPackage
Get-AppxPackage -AllUsers "CAF9E577.Plex" | Remove-AppxPackage
Get-AppxPackage -AllUsers "D52A8D61.FarmVille2CountryEscape" | Remove-AppxPackage
Get-AppxPackage -AllUsers "D5EA27B7.Duolingo-LearnLanguagesforFree" | Remove-AppxPackage
Get-AppxPackage -AllUsers "DB6EA5DB.CyberLinkMediaSuiteEssentials" | Remove-AppxPackage
Get-AppxPackage -AllUsers "DolbyLaboratories.DolbyAccess" | Remove-AppxPackage
Get-AppxPackage -AllUsers "Drawboard.DrawboardPDF" | Remove-AppxPackage
Get-AppxPackage -AllUsers "E046963F.LenovoCompanion" | Remove-AppxPackage
Get-AppxPackage -AllUsers "Facebook.Facebook" | Remove-AppxPackage
Get-AppxPackage -AllUsers "Fitbit.FitbitCoach" | Remove-AppxPackage
Get-AppxPackage -AllUsers "GAMELOFTSA.Asphalt8Airborne" | Remove-AppxPackage
Get-AppxPackage -AllUsers "KeeperSecurityInc.Keeper" | Remove-AppxPackage
Get-AppxPackage -AllUsers "LenovoCorporation.LenovoID" | Remove-AppxPackage
Get-AppxPackage -AllUsers "LenovoCorporation.LenovoSettings" | Remove-AppxPackage
Get-AppxPackage -AllUsers "Microsoft.MicrosoftSolitaireCollection" | Remove-AppxPackage
Get-AppxPackage -AllUsers "Microsoft.MinecraftUWP" | Remove-AppxPackage
Get-AppxPackage -AllUsers "Nordcurrent.CookingFever" | Remove-AppxPackage
Get-AppxPackage -AllUsers "PandoraMediaInc.29680B314EFC2" | Remove-AppxPackage
Get-AppxPackage -AllUsers "SpotifyAB.SpotifyMusic" | Remove-AppxPackage
Get-AppxPackage -AllUsers "WinZipComputing.WinZipUniversal" | Remove-AppxPackage
Get-AppxPackage -AllUsers "XINGAG.XING" | Remove-AppxPackage
Get-AppxPackage -AllUsers "flaregamesGmbH.RoyalRevolt2" | Remove-AppxPackage
Get-AppxPackage -AllUsers "king.com.BubbleWitch3Saga" | Remove-AppxPackage
Get-AppxPackage -AllUsers "king.com.CandyCrushSaga" | Remove-AppxPackage
Get-AppxPackage -AllUsers "king.com.CandyCrushSodaSaga" | Remove-AppxPackage

 

Would that be possible to remove the Windows 10 non-work related ModernApps (AppX)?

Posted
Sorry to be a pain but is there a script for 1803 that I can run during deployment of an image? Or can I run it just before capturing my latest image attempt?

 

Cheers all

 

Gareth

 

Gareth,

 

I run the below script before provisioning the image to the user:

 

Get-AppxProvisionedPackage -Online | Where-Object {$_.PackageName –notlike '*store*' -and $_.PackageName –notlike '*Calc*' -and $_.PackageName –notlike '*Notes*'} | Remove-AppxProvisionedPackage –Online

 

The script above remove all Microsoft junk and 3rd party bloated apps but keeps the Microsoft Store, Calculator and Notes app.

  • Thanks 2
Posted
Hello, i have 2 package removal scripts which can be placed into Windows Powershell as Administrator which removes all of the unwanted apps like candy crush. Just open Powershell as Administrator, copy the package removal scripts and right click into the powershell and they will be gone. :)

 

Hi Nick,

 

Do you run that script as the User logon script?

or as the Computer startup script?

Posted
You would use it as a User Logon Script.

Those commands can be ran as a computer startup script can't they? I thought those commands removed the apps from the machine, not the user. Wouldn't that script just delay the logon times for each user whilst it's being processed?

  • 1 month later...
Posted (edited)

This looks like an interesting way of getting rid of apps!

 

https://dyctl.com/2019/04/12/removing-built-in-apps-using-configuration-items/

 

https://twitter.com/Amar_R_/status/1120767598273150976

 

I normally remove apps during OSD via a task seqence but I notice that it must miss apps as sometimes the computers still have some installed.

 

This in theory would get rid of them all and keep them gone!

Edited by mullet_man
  • Thanks 1
Posted
This looks like an interesting way of getting rid of apps!

 

https://dyctl.com/2019/04/12/removing-built-in-apps-using-configuration-items/

 

 

I normally remove apps during OSD via a task seqence but I notice that it must miss apps as sometimes the computers still have some installed.

 

This in theory would get rid of them all and keep them gone!

This is similar to how I removed apps in 1803

https://gallery.technet.microsoft.com/Removing-Built-in-apps-65dc387b

Posted
I'm going to admit I havn't read every page, but is there something here I can run once and then its done. Or do these scripts need running for every new user logon?
Posted
I'm going to admit I havn't read every page, but is there something here I can run once and then its done. Or do these scripts need running for every new user logon?

The one's posted by @Arthur can be ran against the ISO to create a new modified WIM with the selected items removed. The new WIM can then be deployed via MDT/SCCM.

  • Thanks 1
Posted
Thanks for that.

I was hoping there may be a script I could run just after installing Win10 from a fresh install.

The Powershell cmdlets can be used as a new script that can be used during the OSD or as a computer startup script.

  • Thanks 1
  • 3 weeks later...
  • 2 weeks later...
Posted
Just tested the above linked Powershell script on my new 1903 machine (in-place upgraded) and it seems to have worked well. For a new user account, the unwanted bloat has gone. It's easy enough to add in any apps that are still wanted (Camera for me). How much this will slow deployment down, and whether it'll affect existing profiles for staff (local, without having logged in to the new OS version) is another matter.
Posted
Just tested the above linked Powershell script on my new 1903 machine (in-place upgraded) and it seems to have worked well. For a new user account, the unwanted bloat has gone. It's easy enough to add in any apps that are still wanted (Camera for me). How much this will slow deployment down, and whether it'll affect existing profiles for staff (local, without having logged in to the new OS version) is another matter.
Please can you update here once you've found out what happens with other (existing) users after an in place upgrade?

 

I had hoped that after a clean install of 1803 I would be able to run an in place upgrade without the crud coming back, but reports on here seen to suggest that's hit and miss at best. Trying to hold off upgrading until 19H2(? Octoberish release) so that I can swap on to the longer term support cycle, but would rather not have to reimage all machines during term time.

  • Thanks 1
Posted
Thank you for keeping this thread warm, there's so much unnecessary bloat on Windows 10, and so much of it isn't very intuitive to de-activate/disable. Cortana is an absolute downgrade from the previous search function and it just doesn't work.
Posted
Thank you for keeping this thread warm, there's so much unnecessary bloat on Windows 10, and so much of it isn't very intuitive to de-activate/disable. Cortana is an absolute downgrade from the previous search function and it just doesn't work.

 

New 1903 version has split cortana out now, its much better.

Posted
Is Paint3D no longer separate to MS Paint? I've updated my script with this list as it's far more comprehensive - thankfully only used the old script on one VM so far.
Posted
Is Paint3D no longer separate to MS Paint?

Paint3D must have been an omission. I leave it in my image, although it does look like it's still removable.

 

DisplayName: Microsoft.MSPaint
PackageName: Microsoft.MSPaint_2019.213.1858.0_neutral_~_8wekyb3d8bbwe

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...