similar batch script: Code: @echo off for %%A in ( Clipchamp.Clipchamp Microsoft.BingNews Microsoft.BingSearch Microsoft.BingWeather Microsoft.Copilot Microsoft.GamingApp Microsoft.GetHelp Microsoft.MicrosoftOfficeHub Microsoft.MicrosoftSolitaireCollection Microsoft.MicrosoftStickyNotes Microsoft.OutlookForWindows Microsoft.PowerAutomateDesktop Microsoft.StartExperiencesApp Microsoft.Todos Microsoft.WidgetsPlatformRuntime Microsoft.Windows.DevHome Microsoft.WindowsAlarms Microsoft.WindowsCamera Microsoft.WindowsFeedbackHub Microsoft.WindowsSoundRecorder Microsoft.WindowsTerminal Microsoft.YourPhone MicrosoftCorporationII.MicrosoftFamily MicrosoftCorporationII.QuickAssist MicrosoftWindows.Client.WebExperience MicrosoftWindows.CrossDevice MSTeams ) do ( for /f "tokens=9 delims=\" %%B in ('reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Applications" ^| find /I "%%A"') do ( DISM /Online /NoRestart /Remove-ProvisionedAppxPackage /PackageName:%%B ) )
Do not use such nonsense as NTLite, but rather explore image deployment via PowerShell. This is where Chat GPT can help you.
hi everyone! what are you all using these days to do your decluttering? i'm guessing that msmg toolkit will not work for 25h2? would love to hear what you are all using. Majid
Hello mate.... Yeah for sure. msmg does not work with the latest build According to my experience, your best bet would be NTLITE You could use NTLIte but it is a paid software And if you need the config for NTLITE you could dm me... I have done a good windows debloat for both Windows 11 and Windows 10 for almost every version until the latest version... Mainly my debloat is for gaming.. so i left xbox app and windows media player still on... If you want the iso, i could send it to you...
Does anyone know if MSMG Toolkit works with the latest W10 22H2 ISO created with UUP DUMP, that would be 19045.7184. I've encountered an issue after creating the ISO and flashing to USB, after windows setup finishes copying files, I get a BSOD with CRITICAL_PROCESS_FAILED message.
Nobody knows what you did to the image. I still keep chopping 22H2 images with integrated esu updates and they boot just fine.
Got this exact error for LTSC 21H2 after integrating April updates pack and removing usual junk. Toolkit was working fine up until March with the same settings.
This occurs when you remove the telemetry package. Retain that package and manuually configure settings/services etc and it will install and run fine - at least that's how it was for me. I didn't have a problem with 7184, but it definately BSODs with 8246 You can easily make toolkit work with versions not listed in the readme. You only need to change one line in the script. Of course, as time goes by as Microsoft add and changes contents toolkit doesn't remove stuff it doesn;t know about.
You mean removing check for supported build numbers? Thanks for this information! Unfortunately, ability to remove the telemetry stuff is the main reason for me to use the toolkit.
@Yanta could you tell me which lines I need to change in the script so that it works with unlisted versions?
I replaced this code (at around line 2610 +/-) Code: if "%ImageBuild%" geq "19041" if "%ImageBuild%" leq "19045" ( if "%ImageFlag%" equ "EnterpriseS" if "%ImageServicePackBuild%" equ "1288" set "IsCustomRemovalBuild=Yes" if "%ImageFlag%" equ "EnterpriseSN" if "%ImageServicePackBuild%" equ "1288" set "IsCustomRemovalBuild=Yes" if "%ImageServicePackBuild%" equ "4291" set "IsCustomRemovalBuild=Yes" ) with this Code: if "%ImageBuild%" geq "19041" if "%ImageBuild%" leq "19045" set "IsCustomRemovalBuild=Yes" I'm not a very good coder, and I'm sure there are other consenquences of me doing this, such as as microsoft has updated Windows 10 over time some components may have changed such that they are not completely removed. However, I'm never going to update to W11 and my OS seems quite stable. Whether or not the removal of telelemtry component causing the bsod is intended by M$ we will see in a couple of days I guess. If removing telemetry still results in a CRITICAL_PROCESS_DIED bsod then perhaps Microsoft has made changes to prevent telemetry being removed? I'm no expert. If it doesn't then perhaps last month was an aberration. I've been doing tweaks to try to minimize telelemtry and watching traffic with wireshark, comparing 7058 and 7184 and 7291 to see what's going out. I don't see anything particularly concerning, and I'm very paranoid when it comes to telemetry. take care
@Yanta First of all, I'm very grateful for the explanation, but please excuse my ignorance; I didn't quite understand what I need to change. Could you explain it in more detail, please..?? Is there also a way to modify the script so that the changes are integrated into Windows 11 24H2 and 25H2..?? If so, could you please tell me where to make the change..??
You can search for set "IsCustomRemovalBuild=No" and replace it with set "IsCustomRemovalBuild=Yes" in the Toolkit.cmd file. This will basically remove all the checks for supported or unsupported builds. But it won't make the Toolkit correctly work with these unsupported builds.
@GreenGremlin I appreciate your attempt, but unfortunately, I have to say it didn't work. The only thing I would like the MSMG Toolkit to do is integrate updates for Windows 11 24H2 and 25H2 versions.