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. balanadi

    balanadi MDL Senior Member

    Apr 24, 2014
    341
    504
    10
    You need Microsoft-Windows-Client-LanguagePack-Package-amd64-ru-ru.esd in your casee from UUP files when you download 10.0.26100.1_ru-ru and you exract in lp folder deleting the en-us
     
  2. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    482
    1,041
    10
    Got it, thank you very much! Of course I could have guessed about "lp" myself, but it only occurred to me after your hint...
    :tankyou:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    482
    1,041
    10
    #3203 sainfo, Jul 5, 2025 at 11:40
    Last edited: Jul 5, 2025 at 21:08
    del
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Mavericks Choice

    Mavericks Choice MDL Guru

    Aug 5, 2015
    3,704
    15,083
    120
    @balanadi
    I tested your script without an error ran in a vm worked very well for mine! I will customize to remove store and do more testing, thank you for your script.
     
  5. balanadi

    balanadi MDL Senior Member

    Apr 24, 2014
    341
    504
    10
    I found this one in a 26100 pro to LTSC reconstruction ...



    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <servicing>
            <package action="stage">
                <assemblyIdentity name="Microsoft-Windows-ProfessionalEdition" version="10.0.26100.1" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" />
            </package>
            <package action="install">
                <assemblyIdentity name="Microsoft-Windows-EnterpriseSEdition" version="10.0.26100.1" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" />
                <source location="Microsoft-Windows-EnterpriseSEdition~31bf3856ad364e35~amd64~~10.0.26100.1.mum" />
            </package>
            <package action="remove">
                <assemblyIdentity name="Microsoft-Windows-ProfessionalEdition" version="10.0.26100.1" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" />
            </package>
        </servicing>
    </unattend>
     
  6. balanadi

    balanadi MDL Senior Member

    Apr 24, 2014
    341
    504
    10
    to remove store just delete the folder Appx cause already is removing store before starting the reconstruction
     
  7. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    482
    1,041
    10
    #3207 sainfo, Jul 5, 2025 at 21:39
    Last edited: Jul 5, 2025 at 22:28
    I see, but in my case the task is different. I don't need to transform anything because I already use IoT Enterprise LTSC. Therefore I think that in my case file 1.xml should look something like this:
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
       <servicing>
           <package action="install">
               <assemblyIdentity name="Microsoft-Windows-IoTEnterpriseSEdition" version="10.0.26100.1" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" />
               <source location="Microsoft-Windows-IoTEnterpriseSEdition~31bf3856ad364e35~amd64~~10.0.26100.1.mum" />
           </package>
       </servicing>
    </unattend>
    
    
    I assumed that these actions would clear the WinSxS folder and replace its contents with the sxs package files. Which would significantly reduce the size of the WinSxS folder, but this did not happen, to my regret. Apparently, in my case, there is no need to do all this at all and just delete the sxs folder as unnecessary?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. balanadi

    balanadi MDL Senior Member

    Apr 24, 2014
    341
    504
    10

    My question to you is : if you just install Microsoft-Windows-IoTEnterpriseSEdition without removing Core and Professional maybe that is the reason you have so many in winSxS folder ... there are 3 editions in your image now ...
     
  9. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    482
    1,041
    10
    #3209 sainfo, Jul 6, 2025 at 15:19
    Last edited: Jul 7, 2025 at 20:09
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...