MSMG ToolKit to Convert W8.1/Srv 2012 R2 RTM/GA ISO - W8.1/Srv 2012 R2 Update 1 ISO

Discussion in 'MDL Projects and Applications' started by MSMG, Mar 7, 2014.

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

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,615
    210
    need to check out, coz I don't use windows recovery mode at all as I do remove it with unattend.xml, instead I use r-drive image if anything goes wrong with my system for restoring.


     
  2. gururoop

    gururoop MDL Junior Member

    Aug 12, 2012
    94
    16
    0
    you know what? i just gave this command a shot in the dark:

    DISM /Export-Image /SourceImageFile:C:\install.esd /SourceIndex:1 /DestinationImageFile:C:\install.wim /DestinationName:"Windows 8.1" /Compress:recovery

    and guess what? it worked! it gave me install.wim of exactly the same size as install.esd and also it gives me an option to select image when i select option 2 in the toolkit. let's see if this would work.
     
  3. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,615
    210
    /Compress:recovery is only for .esd format not for install.wim

     
  4. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,432
    11,763
    240
    Congratulations, you now have an install.esd file incorrectly named.
     
  5. gururoop

    gururoop MDL Junior Member

    Aug 12, 2012
    94
    16
    0
    i know that now. i tried running step 2 which returned errors. actually, i'm just a noob learning by trial and error method. thanks for your valuable guidance.
     
  6. luke

    luke MDL Senior Member

    Jun 22, 2007
    458
    35
    10
    I just pulled the install.wim out of MICROSOFT.WINDOWS.8.1.RTM.X64.ENGLISH.DVD-WZT was easier than wasting time installing the OS.
     
  7. d16

    d16 MDL Novice

    Dec 14, 2012
    45
    8
    0
    not working for me,shows error
    An error occurred trying to open - C:\w81u1\Temp\CABS\Windows8.1-KB2919355-x64.c
    ab Error: 0x80070003
     
  8. NICK@NUMBER11

    NICK@NUMBER11 MDL Expert

    Mar 23, 2010
    1,516
    720
    60
    I had the same issue, make sure that all the updates are named correctly, see screenshot....

    Capture.PNG



     
  9. throbber

    throbber MDL Addicted

    Mar 13, 2008
    585
    32
    30
    iv got the same error. is it because dism is looking for the KB . I see the updates are kb...lower case???
     
  10. NICK@NUMBER11

    NICK@NUMBER11 MDL Expert

    Mar 23, 2010
    1,516
    720
    60
    no my issue was that the downloaded updates where named like the screenshot below, so i renamed them as said above...

    Capture.PNG



     
  11. throbber

    throbber MDL Addicted

    Mar 13, 2008
    585
    32
    30
    i see... all my updates end with a long string.lol
    windows8.1-kb2939087-x64_89d4949cd698c645c7a6e96a012eecab44d5c5e1

    ill try again thanks;)
     
  12. NICK@NUMBER11

    NICK@NUMBER11 MDL Expert

    Mar 23, 2010
    1,516
    720
    60
    @ MSMG

    Great work, maybe its work mentioning that the updates need to be named correctly? also would be great if you could add features to enable net framework 3.5 and also add in drivers...

    :worthy:
     
  13. CorporateRAT

    CorporateRAT MDL Member

    Aug 4, 2012
    245
    45
    10
    What do i loose if i don't integrate these two additional updates?
     
  14. throbber

    throbber MDL Addicted

    Mar 13, 2008
    585
    32
    30
    #114 throbber, Mar 10, 2014
    Last edited: Mar 10, 2014
    iv just ran it again and it seems ok. the only problem i have is the iso is now 4.55 GB (4,887,525,376 bytes). from the original 3.63 GB (3,899,295,744 bytes) is this normal for a x64 version with all 6 updates??...i did

    [1] Update Boot WIM Image

    [2] Update Install and Recovery WIM Image (option 1)

    [3] Update DVD Root Files and Folders

    [4] Make a DVD ISO Image
     
  15. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,432
    11,763
    240
    #115 murphy78, Mar 10, 2014
    Last edited by a moderator: Apr 20, 2017
    It's normal, but you can shrink it down by using install.esd recovery compression instead of install.wim max compression.
    Code:
    dism /export-image /sourceimagefile:c:\win81x64\sources\install.wim /sourceindex:1 /destinationimagefile:c:\win81x64\sources\install.esd /compress:recovery /checkintegrity
    repeat for every sourceindex and then
    del /q /s c:\win81x64\sources\install.wim
    re-iso it...
     
  16. Shayne

    Shayne MDL Addicted

    Jul 31, 2009
    752
    181
    30
    #116 Shayne, Mar 10, 2014
    Last edited by a moderator: Apr 20, 2017
    On the ISO file? Can you please explain this a bit clear.

    The resulting ISO installed on VBox and is up to date by is 400 meg larger. Is that a lot of work for 400 meg?

    Regards
     
  17. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,615
    210
    Made some changes today but still need to work on AIO Source OS (x64 & x86) support and also about the redundant process of Winre.wim.

    and for .ESD to .WIM conversion need to sort some issues with it as the one .esd image format of prowmc which I got by store update contains 4 indexes in it, the first three are boot, setup and recovery and the 4th one is install image. I need to know is it same for every install.esd

    then the order of integrating those two extras may be changed as the wzor has given a different order in a recent leak. the 2nd prequiste update has become the 4th Feature pack now.

    Changes:

    + Merged two script files into one, If those two extras updates are copied to the updates then they will be detected and integrated
    + Updated DISM to Build 6.3.19600.17031
    + Updated memtest.exe and other stuffs to 6.3.19600.17031
     
  18. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,479
    92,726
    340
    #118 abbodi1406, Mar 10, 2014
    Last edited by a moderator: Apr 20, 2017
    :)

    No, the indexes are: Media Layout (ISO directories), boot index1, boot index2, install
    of course it's not the same, custom made .esd files has custom indexes
    you can check the indexes in .esd file using:
    Code:
    DISM /Get-WimInfo /WimFile:install.esd
    DISM /Get-WimInfo /WimFile:install.esd /Index:1
    wzor is mistaken, even if kb2939087 is not a prerequisite, it's still just a regular update, not a feature pack
     
  19. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,432
    11,763
    240
    Work? not really. The hard part is testing what you make. It's not difficult to run a few commands.
    I'm a little confused by your query. Do you not know how to iso a file? or not know how to convert to esd file? or both?
     
  20. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    Obviously a misunderstanding as he seems to think the code you posted could be used to manipulate the ISO directly, not the WIM.......:tea::smoking:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...