Slimdown11 – turn Windows 11 or LTSC 2024 into classic/legacy Windows

Discussion in 'Windows 11' started by SunLion, Mar 2, 2025.

  1. otvertka

    otvertka MDL Junior Member

    Aug 13, 2009
    50
    72
    0
    I don't know if it has been spoken before, but the iso file I created with 24H2_INTEGATOR_10.2 is a smooth installation on the virtual machine and great result. But when installing it in the real system, it does not see the discs during the first installation phase. I was only able to install by throwing the install.wim file into 23H2 iso.
     
  2. bendeyar

    bendeyar MDL Member

    Mar 14, 2019
    241
    510
    10
    Sorun olmamalı.
    Gelecekte yine sorun olduğunda, 23h2'deki boot.wim dosyasını alıp 24h2'deki boot.wim dosyasıyla değiştirin.
    There should be no problem.
    In the future when the problem occurs again, take the boot.wim file from 23h2 and replace it with the boot.wim file from 24h2.
     
  3. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    653
    1,445
    30
    I have already written about it, I will write again, for those who read only the last page of this topic. The whole point is that you modify the boot.wim file with this script. Well, you don't need to do it, it's not a necessary action. Leave it alone and you will be happy.

    If you are so itching to modify the boot.wim file, it would be much more interesting to write a script that would remove the little needed index 1 from the boot.wim image and leave only boot index 2 in it ! Besides, such actions would reduce the size of the boot.wim file at least twofold. But so far I don't see anyone willing to raise this very interesting topic ...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. SunLion

    SunLion MDL Expert

    May 11, 2011
    1,635
    6,112
    60
  5. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    653
    1,445
    30
    How good it is that there are such enthusiasts as you, SunLion! You spare neither your efforts nor your time to develop such masterpieces as the Integrator. With all my heart - God bless you with health and all the best!!!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    653
    1,445
    30
    Question for the audience: Can anyone tell me how to open this registry branch? - HKEY_CLASSES_ROOT
    To add it here in - Mount Image Registry ???
    Code:
    echo.
    echo.
    echo.
    ECHO ============================================================
    ECHO Mount Image Registry
    ECHO ============================================================
    reg load HKLM\TK_DEFAULT "%~dp0mount\Windows\System32\config\DEFAULT"
    reg load HKLM\TK_NTUSER "%~dp0mount\Users\Default\NTUSER.DAT"
    reg load HKLM\TK_SOFTWARE "%~dp0mount\Windows\System32\config\SOFTWARE"
    reg load HKLM\TK_SYSTEM "%~dp0mount\Windows\System32\config\SYSTEM"
    
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream
    Staff Member

    Dec 21, 2012
    8,076
    10,298
    270
    If HKCR doesn't work, remember that it is only a shortcut of the following key:

    Code:
    HKEY_LOCAL_MACHINE\SOFTWARE\Classes
    So, you can always use HKLM\SOFTWARE\Classes to address it.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    653
    1,445
    30
    #248 sainfo, Apr 11, 2025
    Last edited: Apr 15, 2025
    Got it, thanks a lot for the hint!

    If I understood you correctly, then the code I'm interested in should look something like this:
    Code:
    
    ::Removing the Indexing Options applet                                   
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Classes\CLSID\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Classes\Wow6432Node\CLSID\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. Mavericks Choice

    Mavericks Choice MDL Guru

    Aug 5, 2015
    4,298
    16,748
    150
    Can anyone explain the "skipLicense" switch cause have read we cannot install some appx packages ignoring the lic file?
    eg:
    for /f "tokens=1 delims=" %%a in ('dir /o-n /b /a-d "%~dp0UUP\APPX\%%u*.appxbundle" 2^>nul') do (
    ECHO %%a
    "%DISM11%" /English /quiet /Image:"%~dp0mount" /Add-ProvisionedAppxPackage /PackagePath:"%~dp0UUP\APPX\%%a" /SkipLicense
    )
     
  10. SunLion

    SunLion MDL Expert

    May 11, 2011
    1,635
    6,112
    60
    As @Carlos Detweiller said, the keys must follow the pattern
    I believe that, to comply with the HKCR, they should always have "Classes" in their composition.

    See the attached illustrative images.
     

    Attached Files:

  11. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    653
    1,445
    30
    #251 sainfo, Apr 11, 2025
    Last edited: Apr 11, 2025
    For now I'll leave it like this, I'll test it and check:
    Code:
    
    echo.
    echo.
    ECHO ============================================================
    echo Hide Side Folders in Explorer
    ECHO ============================================================
    ::Music
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}" /f
    ::Downloads
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{374DE290-123F-4565-9164-39C4925E467B}" /f
    ::Pictures
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{3ADD1653-EB32-4cb0-BBD7-DFA0ABB5ACCA}" /f
    ::Videos
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{A0953C92-50DC-43bf-BE83-3742FED03C9C}" /f
    ::Documents
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}" /f
    ::Desktop
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}" /f
    ::Gallery
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}" /f
    ::Home
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}" /f
    ::Removing the Indexing Options applet                                    
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Classes\CLSID\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Classes\Wow6432Node\CLSID\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    
    
    p.s. By the way, 26100.3902 has already appeared. Again, you have no time for rest, you only dream of peace ...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. siliconbeaver

    siliconbeaver MDL Senior Member

    Apr 29, 2022
    319
    301
    10
    this weekend I did download. its build version 26100.1742.
    Am I missing anything? where to obtain 3902.

    Index : 1
    Name : Windows 11 Home
    Description : Windows 11 Home
    Size : 18,727,965,088 bytes
    WIM Bootable : No
    Architecture : x64
    Hal : <undefined>
    Version : 10.0.26100
    ServicePack Build : 1742 <-- build version
    ServicePack Level : 0
    Edition : Core
    Installation : Client
    ProductType : WinNT
    ProductSuite : Terminal Server
    System Root : WINDOWS
    Directories : 25269
    Files : 112116
    Created : 9/5/2024 - 9:20:49 PM
    Modified : 9/5/2024 - 10:06:58 PM
    Languages :
    en-US (Default)

     
  13. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    653
    1,445
    30
    #253 sainfo, Apr 12, 2025
    Last edited: Apr 12, 2025
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. siliconbeaver

    siliconbeaver MDL Senior Member

    Apr 29, 2022
    319
    301
    10
    Thanks,

    I had forgotten this basic Rule. :D

     
  15. bendeyar

    bendeyar MDL Member

    Mar 14, 2019
    241
    510
    10
    24H2_Integrator_10.4=26100.3902
     

    Attached Files:

    • 1.PNG
      1.PNG
      File size:
      341 KB
      Views:
      46
  16. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    653
    1,445
    30
    #256 sainfo, Apr 13, 2025
    Last edited: Apr 15, 2025
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    653
    1,445
    30
    #258 sainfo, Apr 13, 2025
    Last edited by a moderator: Apr 14, 2025
    Here you are: <Removed, suspected Homebrew, not allowed here!>
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    653
    1,445
    30
    #259 sainfo, Apr 13, 2025
    Last edited: Apr 13, 2025
    DrakeBond,
    In general, I have already spoken about this, I will repeat: you need to work with the original sources, that is, 26100.1. Because there is no point in updating the connected image to version 26100.xxx with this script. This only significantly increases its size. Because the installed OS will update itself to the current version via the Update Center. IMHO

    Because updates come out quite often. Well, you wouldn't do a new build of Windows every two weeks, would you?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. bpevreall1

    bpevreall1 MDL Novice

    Aug 30, 2014
    1
    0
    0
    hi, the program doesnt launch for me on windows 11 when running as admin. trying to slim down the enterprise image in the original post