Slimdown10 – turn Windows 10 22H2 or LTSC 2021 into classic/legacy Windows

Discussion in 'Windows 10' started by Deleted member 190847, Feb 15, 2023.

  1. Mavericks Choice

    Mavericks Choice MDL Guru

    Aug 5, 2015
    3,582
    14,710
    120
    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
    )
     
  2. SunLion

    SunLion MDL Addicted

    May 11, 2011
    995
    3,154
    30
    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:

  3. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    345
    689
    10
    #2643 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...
  4. siliconbeaver

    siliconbeaver MDL Member

    Apr 29, 2022
    183
    85
    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)

     
  5. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    345
    689
    10
    #2645 sainfo, Apr 12, 2025
    Last edited: Apr 12, 2025
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. siliconbeaver

    siliconbeaver MDL Member

    Apr 29, 2022
    183
    85
    10
    Thanks,

    I had forgotten this basic Rule. :D

     
  7. bendeyar

    bendeyar MDL Junior Member

    Mar 14, 2019
    99
    180
    0
    24H2_Integrator_10.4=26100.3902
     

    Attached Files:

    • 1.PNG
      1.PNG
      File size:
      341 KB
      Views:
      45
  8. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    345
    689
    10
    #2648 sainfo, Apr 13, 2025
    Last edited: Apr 15, 2025
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    345
    689
    10
    #2650 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...
  10. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    345
    689
    10
    #2651 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...
  11. 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
     
  12. SunLion

    SunLion MDL Addicted

    May 11, 2011
    995
    3,154
    30
  13. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream
    Staff Member

    Dec 21, 2012
    7,080
    8,419
    240
    You are not allowed to share any Homebrew content here, publicly (private messaging is fine). Link removed. For official ISOs, always post the official MS hash in addition, to remove any doubt.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    345
    689
    10
    #2655 sainfo, Apr 14, 2025
    Last edited: Apr 16, 2025
    It's not allowed, but why not? This is not a state or commercial resource. It just occurred to someone - it's not allowed!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream
    Staff Member

    Dec 21, 2012
    7,080
    8,419
    240
    As I said, private messaging (aka conversation) is fine. Just not publicly.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. siliconbeaver

    siliconbeaver MDL Member

    Apr 29, 2022
    183
    85
    10
    #2657 siliconbeaver, Apr 17, 2025
    Last edited: Apr 25, 2025
    Update
    my 24H2 install test completed successfully on VirtualBox, host Windows 10 22H2 and host Windows 7 (updated VirtualBox-7.0.24/26-Win).

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    my 24H2 install test completed successfully on VirtualBox, host Windows 10 22H2.

    1
    run the script then run _CreateISO.cmd to generate the iso file.
    2
    performed install test on VirtualBVox. host Windows 10 22H2 is ok. host Windows 7 failed. should be an issue of VBox on W7.


    Build: 26100
    Service Pack Build: 3775

    Thank SunLion, for very good work.


    Windows 10 22H2 will be my OS until its last day. I am get 24H2 ready for that day.
    my Windows 7 is still up. but apps request Java 17(Long Term Release) and chrome to run. have to move to Windows 10.
     
  17. bendeyar

    bendeyar MDL Junior Member

    Mar 14, 2019
    99
    180
    0
    #2658 bendeyar, Apr 19, 2025
    Last edited: Apr 19, 2025
    I installed the latest windows update KB5055627 with 24H2_Integrator and the laptop became like F16.
    With some editing I reduced the 4gb update to 850mb.
     

    Attached Files:

    • 1.PNG
      1.PNG
      File size:
      230.3 KB
      Views:
      36
  18. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    345
    689
    10
    Well done, thanks for the good tip!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. bendeyar

    bendeyar MDL Junior Member

    Mar 14, 2019
    99
    180
    0
    I had read about it somewhere in this forum.
    It is not my discovery.