Windows 10 ESD Repository

Discussion in 'Windows 10' started by Tito, Oct 1, 2014.

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,674
    103,513
    450
    You show 2 tools (one by abbodi1406 and one by adguard), which one you don't recommend?
     
  2. Krakatoa

    Krakatoa MDL Addicted

    Feb 22, 2011
    688
    1,132
    30
    #1062 Krakatoa, Jun 15, 2016
    Last edited by a moderator: Apr 20, 2017
    Enthousiast:
    Recomended for 14366: :)

    Code:
    start.cmd
    14366.0.160610-1700.rs1_release_CLIENTPRO_RET_x64fre_cs-cz.esd
    esddecrypt.exe  (size 197120 B, build 14366 version)
    oscdimg.exe
    wimlib.exe
    libwim-15.dll
    start.cmd
    Code:
    pushd "%~dp0"
    set esd=14366.0.160610-1700.rs1_release_CLIENTPRO_RET_x64fre_cs-cz.esd
    esddecrypt %esd%
    md iso
    wimlib apply %esd% 1 iso\
    del iso\MediaMeta.xml
    wimlib export %esd% 2 iso\sources\boot.wim --compress=maximum
    wimlib export %esd% 3 iso\sources\boot.wim --boot
    wimlib export %esd% 4 iso\sources\install.esd
    oscdimg -h -m -o -u2 -udfver102 -bootdata:2#p0,e,biso\boot\etfsboot.com#pEF,e,biso\efi\microsoft\boot\efisys.bin -lWin10 iso Win10.iso
    rd iso /S /Q
    pause
    
    esddecrypt.exe, oscdimg.exe, wimlib.exe, libwim-15.dll included in GusTools-June-2016-Preview-2.zip
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,674
    103,513
    450
    #1063 Enthousiast, Jun 15, 2016
    Last edited by a moderator: Apr 20, 2017
    Why trust a tool from someone i never seen here and not our own trusted abbodi1406? His (and adguard's) tool can create multi-architecture iso's, didn't see the option in gus' tool.
     
  4. Krakatoa

    Krakatoa MDL Addicted

    Feb 22, 2011
    688
    1,132
    30
    #1064 Krakatoa, Jun 15, 2016
    Last edited by a moderator: Apr 20, 2017
    Enthousiast:
    I no recomended gus' tool, gus' tool only included necessary files esddecrypt.exe, oscdimg.exe, wimlib.exe, libwim-15.dll.
    I recomended create small cmd script start.cmd.
    multi-architecture:

    Code:
    start.cmd
    14366.0.160610-1700.rs1_release_CLIENTPRO_RET_x86fre_cs-cz.esd
    14366.0.160610-1700.rs1_release_CLIENTPRO_RET_x64fre_cs-cz.esd
    esddecrypt.exe (size 197120 B, build 14366 version)
    oscdimg.exe
    wimlib.exe
    libwim-15.dll
    start.cmd
    Code:
    pushd "%~dp0"
    set esd32=14366.0.160610-1700.rs1_release_CLIENTPRO_RET_x86fre_cs-cz.esd
    esddecrypt %esd32%
    md iso\x86
    wimlib apply %esd32% 1 iso\x86
    del iso\x86\MediaMeta.xml
    wimlib export %esd32% 2 iso\x86\sources\boot.wim --compress=maximum
    wimlib export %esd32% 3 iso\x86\sources\boot.wim --boot
    wimlib export %esd32% 4 iso\x86\sources\install.esd
    set esd64=14366.0.160610-1700.rs1_release_CLIENTPRO_RET_x64fre_cs-cz.esd
    esddecrypt %esd64%
    md iso\x64
    wimlib apply %esd64% 1 iso\x64\
    del iso\x64\MediaMeta.xml
    wimlib export %esd64% 2 iso\x64\sources\boot.wim --compress=maximum
    wimlib export %esd64% 3 iso\x64\sources\boot.wim --boot
    wimlib export %esd64% 4 iso\x64\sources\install.esd
    xcopy /Y /I /E /H iso\x64\boot\* iso\boot
    xcopy /Y /I /E /H iso\x64\efi\* iso\efi
    copy iso\x86\efi\boot\bootia32.efi iso\efi\boot\bootia32.efi
    copy iso\x86\setup.exe iso\setup.exe
    copy iso\x64\bootmgr.efi iso\bootmgr.efi
    copy iso\x64\bootmgr iso\bootmgr
    bcdedit /store iso\boot\bcd /set {default} description "Windows 10 Setup (64-bit)"
    bcdedit /store iso\boot\bcd /set {default} bootmenupolicy Legacy
    bcdedit /store iso\boot\bcd /set {default} device ramdisk=[boot]\x64\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
    bcdedit /store iso\boot\bcd /set {default} osdevice ramdisk=[boot]\x64\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
    for /f "tokens=2 delims={}" %%A in ('bcdedit /store iso\boot\bcd /copy {default} /d "Windows 10 Setup (32-bit)"') do set guid={%%A}
    bcdedit /store iso\boot\bcd /set %guid% device ramdisk=[boot]\x86\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
    bcdedit /store iso\boot\bcd /set %guid% osdevice ramdisk=[boot]\x86\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
    bcdedit /store iso\efi\microsoft\boot\bcd /set {default} description "Windows 10 Setup (64-bit)"
    bcdedit /store iso\efi\microsoft\boot\bcd /set {default} bootmenupolicy Legacy
    bcdedit /store iso\efi\microsoft\boot\bcd /set {default} device ramdisk=[boot]\x64\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
    bcdedit /store iso\efi\microsoft\boot\bcd /set {default} osdevice ramdisk=[boot]\x64\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
    for /f "tokens=2 delims={}" %%A in ('bcdedit /store iso\efi\microsoft\boot\bcd /copy {default} /d "Windows 10 Setup (32-bit)"') do set guid={%%A}
    bcdedit /store iso\efi\microsoft\boot\bcd /set %guid% device ramdisk=[boot]\x86\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
    bcdedit /store iso\efi\microsoft\boot\bcd /set %guid% osdevice ramdisk=[boot]\x86\sources\boot.wim,{7619dcc8-fafe-11d9-b411-000476eba25f}
    oscdimg -h -m -o -u2 -udfver102 -bootdata:2#p0,e,biso\boot\etfsboot.com#pEF,e,biso\efi\microsoft\boot\efisys.bin -lWin10 iso Win10.iso
    rd iso /S /Q
    pause
     
  5. EFA11

    EFA11 Avatar Guru

    Oct 7, 2010
    8,710
    6,739
    270
    #1067 EFA11, Jun 16, 2016
    Last edited by a moderator: Apr 20, 2017

    SHA256: 411eaea0c44206ca0fe10b4b6ce104018baec986685d1f75c98efaa7c0c8fc14
    File name: Dism CUI.exe
    Detection ratio: 1 / 54
    Analysis date: 2016-06-16 08:22:13 UTC ( 0 minutes ago )

    Code:
     FileVersionInfo properties
    Copyright
    Chuyu Copyright (C) 2016
    
    Product Dism++ CUI
    Original name Dism++CUI.exe
    Internal name Dism++CUI.exe
    File version 1.0.0.2
    Description Dism++ Command Line
    PE header basic information
    Target machine Intel 386 or later processors and compatible processors
    Compilation timestamp 2016-06-12 05:20:09
    Entry Point 0x0000133E
    Number of sections 6
    
    its an FP, and Avast Win32:Evo-gen [Susp] means Avasts suspects it could infect computers, so it flags it anyway. Not that it does.

    How you got your winding dunno, my fully updated defender doesn't see it as anything.
     
  6. hb860

    hb860 MDL Expert

    May 7, 2010
    1,012
    1,860
    60
    #1068 hb860, Jun 16, 2016
    Last edited by a moderator: May 23, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. ksio89

    ksio89 MDL Member

    Nov 20, 2013
    129
    40
    10
    Just posting to say thanks! :) I downloaded Windows 10 Home Single Language and Windows 10 Pro N and with latest ESD Decrypter script to create ISOs. Used Rufus to create a bootable USB installation media (UEFI), and both worked fine. Thanks to the uploader and the ESD Decrypter author :thumbsup:
     
  8. Krakatoa

    Krakatoa MDL Addicted

    Feb 22, 2011
    688
    1,132
    30
    #1073 Krakatoa, Jun 18, 2016
    Last edited by a moderator: Apr 20, 2017
  9. hounsell

    hounsell MDL Novice

    Oct 9, 2014
    42
    98
    0
    It'll run back to Vista SP2 at the moment since it supports back to .NET Framework 4.5. I do intend to make it XP-friendly, though it's not a particularly high priority.

    On the other hand .NET does mean that it also runs on Linux and OSX via Mono.

    Error handling still leaves a lot to be desired, sure, I'm fixing that as I come across the issues now. I wrote v0.1 in pretty much one afternoon sitting, so it was pretty bleh. I've added it to the issue tracker on GitHub to remind me, should be fixed the next release I make. I'm happy if people want to report crashes to me either via the github issue tracker, or via twitter on @tomhounsell.
     
  10. BELNN

    BELNN MDL Member

    Apr 2, 2016
    107
    72
    10
    New ESD images: combinedmulti, combinedmultiN, combinedmultichina
    Win10 Build 14342.1000.rs1_release.160506-1708
    Does not support
     
  11. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,674
    103,513
    450
    What do you mean? With the 14342 esd files i could create x86/x64 Multiple Editions iso's. Latest IP esd files are 14367.
     
  12. BELNN

    BELNN MDL Member

    Apr 2, 2016
    107
    72
    10
    There is a ESD images combinedmulti, combinedmultiN, combinedmultichina Build 14342.1000.rs1_release.160506-1708 which are not correctly decrypt esd-decrypter-wimlib-21. Need the script to make the change.
     
  13. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,674
    103,513
    450
    #1080 Enthousiast, Jun 21, 2016
    Last edited by a moderator: Apr 20, 2017