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,882
    15,624
    120
    Tested script no errors, ran in a vm, small gripe I enabled search though in taskbar settings was disabled by default, easy fix to manually toggle it back on.
     
  2. bendeyar

    bendeyar MDL Member

    Mar 14, 2019
    160
    311
    10
    #3462 bendeyar, Sep 18, 2025
    Last edited: Sep 18, 2025
    Some laptops have activation in BIOS.
    Wouldn't activating from "install.wim" be a problem for them?
     
  3. SunLion

    SunLion MDL Expert

    May 11, 2011
    1,291
    4,502
    60
    I don't think there will be any problems, because the codes in the $OEM$ folder are copied to the same location as in install.wim, i.e. .\Windows\Setup\Scripts.

    So everything should work normally.
     
  4. KleineZiege

    KleineZiege MDL Guru

    Dec 11, 2018
    2,132
    2,539
    90
    Great Job @SunLion
    I'm testing tonight. Can anyone tell me whether the flags are set with the script in IOTEternerprise?
    Or does it remain on EnterpriseS?
     
  5. SunLion

    SunLion MDL Expert

    May 11, 2011
    1,291
    4,502
    60
    The script doesn't change this. It remains EnterpriseS or IoTEnterpriseS depending on the image you're editing.
     
  6. KleineZiege

    KleineZiege MDL Guru

    Dec 11, 2018
    2,132
    2,539
    90
    Everything worked except for LTSC 2025. It is installed as LTSC 2025, but activation does not take place with the original script from Tsforge. I'm now using my modified Setupcomplete.cmd.
    The first installation is online, the second offline. Let's see how it behaves.
    Otherwise, I'll build two activations into LTSC 2025.
    Namely, KMS4k.
    By the way, I haven't reduced the size of Pro and Enterprise yet. These are original files from MVS that I've tweaked a little, Reg Keys, etc..
     
  7. hoak

    hoak MDL Senior Member

    Nov 13, 2009
    414
    1,139
    10
  8. KleineZiege

    KleineZiege MDL Guru

    Dec 11, 2018
    2,132
    2,539
    90
  9. KleineZiege

    KleineZiege MDL Guru

    Dec 11, 2018
    2,132
    2,539
    90
    #3471 KleineZiege, Sep 20, 2025
    Last edited: Sep 20, 2025

    Attached Files:

  10. KleineZiege

    KleineZiege MDL Guru

    Dec 11, 2018
    2,132
    2,539
    90
    I'll add two more indexes,
    Server 2025 Desktop view.
    # The result is coming soon
     
  11. siliconbeaver

    siliconbeaver MDL Senior Member

    Apr 29, 2022
    258
    228
    10
    #3473 siliconbeaver, Sep 21, 2025
    Last edited: Sep 21, 2025
    the test passed on VM. no issues. all classic apps working fine. (snipping paint calculator)

    its installed OS size 12.5 GB is similar to last release. but much bigger than that by 24H2_Integrator_10.19 (some 10 GB. must be using W10UI .mum method).

     
  12. hoak

    hoak MDL Senior Member

    Nov 13, 2009
    414
    1,139
    10
  13. siliconbeaver

    siliconbeaver MDL Senior Member

    Apr 29, 2022
    258
    228
    10
    Last weekend,

    I tested it on physical computer. Its bugs are much less than the early release.

    It has run last weekend. it's noticed that SD11 explorer got freezing-up often. no response to mouse click. my quick fix is to close the explorer. then re-open a new explorer. my computer was running tiny11 and it didn't have this issue.


    Can you look into the issue? Thanks,


     
  14. SunLion

    SunLion MDL Expert

    May 11, 2011
    1,291
    4,502
    60
    I'll look into it...

    Some online comments suggest that Explorer in Windows 11 has been experiencing some bugs.

    Let's see if we can figure out what it is...
     
  15. SunLion

    SunLion MDL Expert

    May 11, 2011
    1,291
    4,502
    60
    @siliconbeaver

    There are many questions about this online; I just checked again.

    Technicians recommend running SFC /scannow, among other measures, in almost all cases.

    However, in our script, I disabled Windows Update by default at the end of the installation.

    What we could try is to change this and leave Windows Update enabled and run it after installation to check for updates.

    To do this without modifying the script, after installation, run the \Utilities\ToggleWindowsUpdate_v3.4 tool.

    This tool toggles the Windows Update operating mode.

    After that, it's up to you whether or not to disable Windows Update.

    For now, please try this method.
     
  16. siliconbeaver

    siliconbeaver MDL Senior Member

    Apr 29, 2022
    258
    228
    10
    Thanks for prompt response,

    I have run the update. will see how it does.
     
  17. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    557
    1,234
    30
    Note:
    You can also use this Updates-On.bat to restore the Update Center to normal operation:
    Code:
    @echo off
    echo Enabling the Windows Update Center...
    rem Restart the Windows Update Center service
    net start wuauserv
    sc config wuauserv start= auto
    echo The service is started, the startup type has been changed to "Automatic".
    rem Delete the registry key that blocks updates
    reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "NoAutoUpdate" /f > nul 2>&1
    echo The registry key that blocks updates has been deleted.
    echo Enabling Windows Update Center is complete.
    pause
    exit
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    557
    1,234
    30
    #3480 sainfo, Sep 22, 2025
    Last edited: Oct 1, 2025
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...