[ARCHIVED] Windows Editions Reconstruction Project

Discussion in 'Windows 10' started by whatever127, Jan 10, 2020.

Thread Status:
Not open for further replies.
  1. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,672
    14,410
    340
    #5981 xinso, Dec 24, 2021
    Last edited: Dec 24, 2021
  2. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,672
    14,410
    340
  3. example12345678912345678

    Dec 29, 2019
    567
    318
    30
    What's your MD5/SHA1 value of your language pack archive?
    I want to compare it. I hope I'm using the wrong archive.
    My SHA1 value is:
    Code:
    B61C9500E77D6DE40EDC7BCA79F057BD20DD916B
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,672
    14,410
    340
    #5985 xinso, Dec 24, 2021
    Last edited: Dec 24, 2021
    B61C9500E77D6DE40EDC7BCA79F057BD20DD916B
     
  5. pm67310

    pm67310 MDL Guru

    Sep 6, 2011
    3,326
    2,507
    120
    create build 20348.1 using uup dump not update , convert datacenter to datacenter azur succes

    Offline :

    Add ssu to wim succes

    Add update fails

    Online :

    install on vmware workstation 16

    run windows update , net frameworks update succes / ssu 20348.405 succes but 20348.405 full update fails ...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. example12345678912345678

    Dec 29, 2019
    567
    318
    30
    Oh, it looks like we're using same packages.
    What if I use the packages I've converted previously, will it work?
    Code:
    Microsoft-Windows-EditionSpecific-StarterN-Package-full_psfx.cab: 500+ MB size.
    Microsoft-Windows-EditionSpecific-StarterN-WOW64-Package-full_psfx.cab: 22 MB size.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,672
    14,410
    340
    #5988 xinso, Dec 24, 2021
    Last edited: Dec 24, 2021
    No. This is new script. You ask balanadi to share the old script with you. Same outcome.
     
  8. example12345678912345678

    Dec 29, 2019
    567
    318
    30
    Oh, I got it. If the old script is useless, then I don't need it.
    Probably it fails in the "keyfinder.exe" part. Because I can't run it due to a message stating it has a virus.
    VirusTotal result:
    bandicam 2021-12-24 13-42-03-025.jpg
    Also I tried to disable Defender, but same error.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. pm67310

    pm67310 MDL Guru

    Sep 6, 2011
    3,326
    2,507
    120
    #5990 pm67310, Dec 24, 2021
    Last edited: Dec 24, 2021
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,672
    14,410
    340
  11. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,857
    1,520
    60
    Code:
    Remove Owner with install_wim_tweak.cmd:
    
    @echo off
    
    cd /d "%~dp0"
    
    set mountdir=c:\mount
    
    setlocal enabledelayedexpansion
    
    for %%0 in (
    Package_for_RollupFix
    Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package
    Microsoft-Windows-LanguageFeatures-Handwriting-zh-cn-Package
    Microsoft-Windows-LanguageFeatures-OCR-zh-cn-Package
    Microsoft-Windows-LanguageFeatures-Speech-zh-cn-Package
    Microsoft-Windows-LanguageFeatures-TextToSpeech-zh-cn-Package
    Microsoft-Windows-LanguageFeatures-Basic-zh-cn-Package
    Microsoft-Windows-Client-LanguagePack-Package
    ) do (
    install_wim_tweak.exe /p !MOUNTDIR! /c "%%0" /h
    
    )
    endlocal
    
    pause
    
    *
    
    Uninstall zh-CN  language packs & stage RollupFix:
    
    dism /image:C:\mount /apply-unattend:C:\1.xml
    
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <servicing>
            <package action="stage">
                <assemblyIdentity name="Package_for_RollupFix" version="17763.1397.1.5" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
            </package>
            <package action="remove">
                <assemblyIdentity name="Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package" version="10.0.17763.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
            </package>
            <package action="remove">
                <assemblyIdentity name="Microsoft-Windows-LanguageFeatures-Handwriting-zh-cn-Package" version="10.0.17763.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
            </package>
            <package action="remove">
                <assemblyIdentity name="Microsoft-Windows-LanguageFeatures-OCR-zh-cn-Package" version="10.0.17763.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
            </package>
            <package action="remove">
                <assemblyIdentity name="Microsoft-Windows-LanguageFeatures-Speech-zh-cn-Package" version="10.0.17763.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
            </package>
            <package action="remove">
                <assemblyIdentity name="Microsoft-Windows-LanguageFeatures-TextToSpeech-zh-cn-Package" version="10.0.17763.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
            </package>
            <package action="remove">
                <assemblyIdentity name="Microsoft-Windows-LanguageFeatures-Basic-zh-cn-Package" version="10.0.17763.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
            </package>
            <package action="remove">
                <assemblyIdentity name="Microsoft-Windows-Client-LanguagePack-Package" version="10.0.17763.1" processorArchitecture="amd64" language="zh-CN" buildType="release" publicKeyToken="31bf3856ad364e35" />
            </package>
        </servicing>
    </unattend>
    
    *
    
    Add en-US languagepack packages:
    
    dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-client-languagepack-package_en-us-amd64-en-us.esd
    dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-languagefeatures-basic-en-us-package-amd64\update.mum
    dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-languagefeatures-handwriting-en-us-package-amd64\update.mum
    dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-languagefeatures-ocr-en-us-package-amd64\update.mum
    dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-languagefeatures-speech-en-us-package-amd64\update.mum
    dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-languagefeatures-texttospeech-en-us-package-amd64\update.mum
    
    *
    
    Set en-US Intl & Time Zone:
    
    dism /image:C:\mount /Set-AllIntl:en-US
    dism /image:C:\mount /Set-TimeZone:"Pacific Standard Time"
    dism /image:C:\mount /get-intl
    
    *
    
    Reinstall/Unstage RollupFix:
    
    dism /image:C:\mount /apply-unattend:C:\RollupFix.xml
    
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <servicing>
            <package action="install">
                <assemblyIdentity name="Package_for_RollupFix" version="17763.1397.1.5" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
            </package>
        </servicing>
    </unattend>

    Code:
    Microsoft Windows [Version 10.0.19041.1]
    (c) 2019 Microsoft Corporation. All rights reserved.
    
    C:\Windows\system32>dism /image:C:\mount /apply-unattend:C:\1.xml
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1397
    
    Removing package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~zh-CN~10.0.17763.1
    Removing package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~zh-CN~10.0.17763.1
    Removing package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~zh-CN~10.0.17763.1
    Removing package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~zh-CN~10.0.17763.1
    Removing package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~zh-CN~10.0.17763.1
    Removing package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~zh-CN~10.0.17763.1
    Removing package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~zh-CN~10.0.17763.1
    Removing package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~zh-CN~10.0.17763.1
    [==========================100.0%==========================]
    
    The operation completed successfully.
    
    
    C:\Windows\system32>dism /image:C:\mount /get-packages
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    Packages listing:
    
    Package Identity : Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:06 PM
    
    Package Identity : Microsoft-Windows-FodMetadata-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : Feature Pack
    Install Time : 9/15/2018 4:05 PM
    
    Package Identity : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : Foundation
    Install Time : 9/15/2018 7:36 AM
    
    Package Identity : Microsoft-Windows-Hello-Face-Migration-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:04 PM
    
    Package Identity : Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:04 PM
    
    Package Identity : Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:05 PM
    
    Package Identity : Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:05 PM
    
    Package Identity : Microsoft-Windows-Security-SPP-Component-SKU-EnterpriseG-GVLK-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : Feature Pack
    Install Time : 9/15/2018 4:12 PM
    
    Package Identity : Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:04 PM
    
    Package Identity : OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:05 PM
    
    Package Identity : Package_for_RollupFix~31bf3856ad364e35~amd64~~17763.1397.1.5
    State : Staged
    Release Type : Security Update
    Install Time : 8/14/2020 6:51 AM
    
    The operation completed successfully.
    
    *
    
    Add en-US languagepack packages:
    
    Microsoft Windows [Version 10.0.19041.1]
    (c) 2019 Microsoft Corporation. All rights reserved.
    
    C:\Windows\system32>dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-client-languagepack-package_en-us-amd64-en-us.esd
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    Processing 1 of 1 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.17763.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\Windows\system32>dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-languagefeatures-basic-en-us-package-amd64\update.mum
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\Windows\system32>dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-languagefeatures-handwriting-en-us-package-amd64\update.mum
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\Windows\system32>dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-languagefeatures-ocr-en-us-package-amd64\update.mum
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\Windows\system32>dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-languagefeatures-speech-en-us-package-amd64\update.mum
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\Windows\system32>dism /image:C:\mount /add-package /packagepath:C:\10.0.17763.1\microsoft-windows-languagefeatures-texttospeech-en-us-package-amd64\update.mum
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    *
    
    Set en-US Intl & Time Zone:
    
    Microsoft Windows [Version 10.0.19041.1]
    (c) 2019 Microsoft Corporation. All rights reserved.
    
    C:\Windows\system32>dism /image:C:\mount /Set-AllIntl:en-US
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    
    Input locale has been set to: en-US
    System locale has been set to: en-US
    User locale has been set to: en-US
    UI language has been set to: en-US
    The operation completed successfully.
    
    C:\Windows\system32>dism /image:C:\mount /Set-TimeZone:"Pacific Standard Time"
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    
    The time zone has been set to: Pacific Standard Time
    The operation completed successfully.
    
    C:\Windows\system32>dism /image:C:\mount /get-intl
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    Reporting offline international settings.
    
    Default system UI language : en-US
    System locale : en-US
    Default time zone : Pacific Standard Time
    User locale for default user : en-US
    Location : United States (GEOID = 244)
    Active keyboard(s) : 0409:00000409
    Keyboard layered driver : Not installed.
    
    Installed language(s): en-US
      Type : Fully localized language.
    
    The operation completed successfully.
    
    &
    
    Reinstall/Unstage RollupFix:
    
    Microsoft Windows [Version 10.0.19041.1]
    (c) 2019 Microsoft Corporation. All rights reserved.
    
    C:\Windows\system32>dism /image:C:\mount /apply-unattend:C:\RollupFix.xml
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1
    
    [==========================100.0%==========================]
    The operation completed successfully.
    
    *
    
    Result:
    
    C:\Windows\system32>dism /image:C:\mount /get-packages
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1397
    
    Packages listing:
    
    Package Identity : Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:06 PM
    
    Package Identity : Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.17763.1
    State : Installed
    Release Type : Language Pack
    Install Time : 12/24/2021 12:08 PM
    
    Package Identity : Microsoft-Windows-FodMetadata-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : Feature Pack
    Install Time : 9/15/2018 4:05 PM
    
    Package Identity : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : Foundation
    Install Time : 9/15/2018 7:36 AM
    
    Package Identity : Microsoft-Windows-Hello-Face-Migration-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:04 PM
    
    Package Identity : Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:04 PM
    
    Package Identity : Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:05 PM
    
    Package Identity : Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 12/24/2021 12:17 PM
    
    Package Identity : Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 12/24/2021 12:22 PM
    
    Package Identity : Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 12/24/2021 12:22 PM
    
    Package Identity : Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 12/24/2021 12:22 PM
    
    Package Identity : Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 12/24/2021 12:22 PM
    
    Package Identity : Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:05 PM
    
    Package Identity : Microsoft-Windows-Security-SPP-Component-SKU-EnterpriseG-GVLK-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : Feature Pack
    Install Time : 9/15/2018 4:12 PM
    
    Package Identity : Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:04 PM
    
    Package Identity : OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.17763.1
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 9/15/2018 4:05 PM
    
    Package Identity : Package_for_RollupFix~31bf3856ad364e35~amd64~~17763.1397.1.5
    State : Installed
    Release Type : Security Update
    Install Time : 12/24/2021 12:42 PM
    
    The operation completed successfully.
    
    *
    
    Result:
    
    C:\Windows\system32>dism /image:C:\mount /get-currentedition
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.1
    
    Image Version: 10.0.17763.1397
    
    Current edition is:
    
    Current Edition : EnterpriseG
    
    The operation completed successfully.

    Just need to install modded wim & test that it work's.;)
     
  12. pm67310

    pm67310 MDL Guru

    Sep 6, 2011
    3,326
    2,507
    120
    using your package to create azure datacenter

    20348.1_SDC_to_STB_amd64
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,672
    14,410
    340
    It is kibkalo's packages.
     
  14. example12345678912345678

    Dec 29, 2019
    567
    318
    30
    @xinso, I need some product keys for some editions for reconstruction. I don't know if it's against the rules. So, can you PM me? I can't PM you.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,672
    14,410
    340
    #5998 xinso, Dec 24, 2021
    Last edited: Dec 24, 2021
    The official default key's "product.ini" is usually located in SAC\AC ISO\sources.

    You are very interested in Unstaged builds.
     
  16. pm67310

    pm67310 MDL Guru

    Sep 6, 2011
    3,326
    2,507
    120
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,189
    90,648
    340
    EnterpriseS build 19041.1

    added ARM64 pack (not tested for actual installation)