[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,709
    14,434
    340
    #13201 xinso, Oct 24, 2023
    Last edited: Oct 25, 2023
  2. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,709
    14,434
    340
    #13203 xinso, Oct 24, 2023
    Last edited: Oct 25, 2023
    Any unofficial image is not allowed.
     
  3. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,709
    14,434
    340
  4. xinso

    xinso MDL Guru

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

    xinso MDL Guru

    Mar 5, 2009
    13,709
    14,434
    340
  6. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,709
    14,434
    340
  7. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,709
    14,434
    340
  8. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,709
    14,434
    340
  9. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,709
    14,434
    340
    #13210 xinso, Oct 27, 2023
    Last edited: Oct 27, 2023
    From 25398.1 and 25398.469 CU, these four Editions in en-US are supported:
    Code:
          <assemblyIdentity name="microsoft-windows-professionaledition" version="10.0.25398.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
          <assemblyIdentity name="microsoft-windows-serverazurestackhcicoredition" version="10.0.25398.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
          <assemblyIdentity name="microsoft-windows-serverdatacentercoredition" version="10.0.25398.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
          <assemblyIdentity name="microsoft-windows-serverdatacenteredition" version="10.0.25398.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
    
    But, only three Editions are available:
    Code:
          <assemblyIdentity name="microsoft-windows-professionaledition" version="10.0.25398.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
          <assemblyIdentity name="microsoft-windows-serverazurestackhcicoredition" version="10.0.25398.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
          <assemblyIdentity name="microsoft-windows-serverdatacentercoredition" version="10.0.25398.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" />
    
     
  10. VCCS

    VCCS MDL Novice

    Mar 27, 2023
    7
    1
    0
    Can you share your folder required to construct 25398.469 for client enterprise and server (gui enabled)?
     
  11. ador250

    ador250 MDL Novice

    Jun 5, 2019
    18
    11
    0
    Is there a way to generate a 2016 LTSB iso with all update included like uupdump?
     
  12. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,709
    14,434
    340
  13. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,863
    1,524
    60
    No, only Microsoft has needed files and knowledge .;)
     
  14. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,863
    1,524
    60
    Easy way would be to download Win10 Enterprise LTSB 2016 (Build - 14393) find out all needed updates and which program is needed to update boot.wim, install.wim, winre.wim, and then after updates make all wims and files into a new iso.;)

    P.S
    Best person to ask about updates and needed program would be Enthousiast
     
  15. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,709
    14,434
    340
  16. ylx

    ylx MDL Junior Member

    Dec 14, 2014
    74
    37
    0
    master
    Is there a way to decompress psd+wim?
    like Windows11.0-KB5031373-x64
    PSFExtractor must need cab and psf.cix.xml in cab
     
  17. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,709
    14,434
    340
    #13219 xinso, Oct 28, 2023
    Last edited: Oct 28, 2023
    Code:
    1. Extract express.psf.cix.xml from msu\Windows11.0-KB5029251-x64.wim 
    
    2. Extract updatecompression.dll from msu\DesktopDeployment.cab and rename as msdelta.dll
    
    3. put the following files in a same folder
    
    express.psf.cix.xml
    msdelta.dll
    Windows11.0-KB5029251-x64.psf
    Windows11.0-KB5029251-x64.wim
    psfextractor.exe
    
    4. open cmd as Administrator and cd to the folder
    
    5. run the command line (to extract Windows11.0-KB5029251-x64.psf)
    
    PSFExtractor-amd64.exe -v2 Windows11.0-KB5029251-x64.psf express.psf.cix.xml Windows11.0-KB5029251-x64
    
    6. Extract Windows11.0-KB5029251-x64.wim to Windows11.0-KB5029251-x64
    
    7. Compress Windows11.0-KB5029251-x64 to Windows11.0-KB5029251-x64.esd
    
    [Credits]
    BetaWorld
     
  18. ylx

    ylx MDL Junior Member

    Dec 14, 2014
    74
    37
    0
    thanks