[ARCHIVED] Windows Editions Reconstruction Project

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

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

    Dec 29, 2019
    569
    322
    30
    I send the log file via an attachment. I tried to include zh-cn this time. But same result again. I think need better wincore.wim for that.
     

    Attached Files:

    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. gailium119

    gailium119 MDL Addicted

    Oct 12, 2021
    790
    510
    30
    Did you try to run the sctipt in a vm with host os 19041.1 or higher? I've encountered issues that the windows version of the host machine is too low to perform specific options
     
  3. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,707
    14,434
    340
  4. hcvn

    hcvn MDL Junior Member

    Aug 11, 2017
    57
    30
    0
    Thanks for giving me this valuable information !
    How can I find the official Unstaged ISO 19100.1051.210916-1011.VB_RELEASE_SVC_TEAM_FLIGHT_CLIENTUNSTAGED_RETAIL_X64FRE_EN-US.ISO ?
    I Searched on Google but results is nothing .
    or Can You re-upload this Media layout of this Unstaged ISO ?
     
  5. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,707
    14,434
    340
    (Even same Media layout is still useless. If it worked, should I talked so much?)
    example12345678912345678 gave me that by PM. Ask him.
     
  6. hcvn

    hcvn MDL Junior Member

    Aug 11, 2017
    57
    30
    0
    Thanks master.
    just curious to known about Unstaged ISO !
     
  7. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,707
    14,434
    340
    #7467 xinso, Apr 12, 2022
    Last edited: Apr 12, 2022
    Unstaged, Foundation --> Barebone.

    Barebone is the most cleanest, but not fully functional, especially Windows 11 which needs more App dependencies.

    No FODs + No App dependencies = No working System.
     
  8. example12345678912345678

    Dec 29, 2019
    569
    322
    30
    You can either PM me or anyone else who has the link. Actually, the link was down when @gailium119 asked me. But I checked it right now. It's up again. :)
    Probably some website issues.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,707
    14,434
    340
    Q: How to set variable for "19041.1.amd64fre.vb_release.191206-1406" in 3.txt?
    3.txt
    Code:
    1:      <registryValue name="BuildLabEx" valueType="REG_SZ" value="19041.1.amd64fre.vb_release.191206-1406" />
    
    
     
  10. jimkoutso2008

    jimkoutso2008 MDL Novice

    Mar 5, 2022
    3
    1
    0
    I don't find the folder.
    I looked in both the sources of the iso and at the boot.wim.
    I even looked at a LTSC and LTSB iso and didn't found anything.
     
  11. kadi123

    kadi123 MDL Novice

    Nov 12, 2021
    15
    5
    0
    Copy and Paste from Windows CMG to Reconstructed Windows according to the following paths

    C:\Windows\SysWOW64\Licenses
    C:\Windows\System32\Licenses
    C:\Windows\System32\en-US\Licenses
     
  12. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,707
    14,434
    340
  13. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,707
    14,434
    340
  14. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,707
    14,434
    340
    #7477 xinso, Apr 13, 2022
    Last edited: Apr 13, 2022
    Q: How to capture Unstaged components into base.wim and install.wim?
    A:
    [script]
    Code:
    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    
    if exist *.wim del /f /q *.wim
    
    echo.
    echo ------------------------------------------------------------
    echo Capturing base image
    echo ------------------------------------------------------------
    dism /english /capture-image /imagefile:1.wim /capturedir:%MT% /name:"Windows Unstaged" /compress:max /ConfigFile:files\Exclusion.ini
    
    echo.
    echo ------------------------------------------------------------
    echo Exporting base image to base.wim
    echo ------------------------------------------------------------
    dism /english /export-image /sourceimagefile:1.wim /sourceindex:1 /destinationimagefile:base.wim /Compress:max /CheckIntegrity
    
    echo.
    echo ------------------------------------------------------------
    echo Capturing install image
    echo ------------------------------------------------------------
    dism /english /capture-image /imagefile:1.wim /capturedir:%MT% /name:"Windows Unstaged" /compress:max
    
    echo.
    echo ------------------------------------------------------------
    echo Exporting install image to install.wim
    echo ------------------------------------------------------------
    dism /english /export-image /sourceimagefile:1.wim /sourceindex:1 /destinationimagefile:install.wim /Compress:max /CheckIntegrity
    
    del /f /q 1.wim
    
    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    
    [Exclusion.ini]
    Code:
    [ExclusionList]
    \Packages
    
     
  15. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,707
    14,434
    340
    #7478 xinso, Apr 13, 2022
    Last edited: Apr 13, 2022
    Q: In a script, how to set Unstaged WIM's DESCRIPTION exactly according to available editions?

    e.g. There are only two editions EnterpriseS and EnterpriseSN.

    Windows Longhorn Client (19041.1.amd64fre.vb_release.191206-1406) EDITIONS:
    +
    ENTERPRISES,ENTERPRISESN
    =
    Code:
    Windows Longhorn Client (19041.1.amd64fre.vb_release.191206-1406) EDITIONS:ENTERPRISES,ENTERPRISESN
    
     
  16. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,818
    19,024
    340
  17. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,707
    14,434
    340
    #7480 xinso, Apr 13, 2022
    Last edited: Apr 13, 2022