Windows Integration Guide - murphy78

Discussion in 'Windows 8' started by murphy78, Sep 5, 2013.

  1. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    Afaik it's recommended to activate .NET first then add the Updates.

    The only time updates didn't set the pending flag was last Patch Day (july), so in most cases you aren't able to ResetBase the Image. Workaround would be to install in Audit Mode, Sysprep/Generalize and re-capture.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. nima1024

    nima1024 MDL Member

    Sep 18, 2010
    240
    42
    10
    Does it worth that much hassle at first place?
    Think we never do CleanupComponent & ResetBase in Offline mode, will we loose any special benefit or what?
     
  3. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    It's more a matter of the size of the WIM :cool2:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. nima1024

    nima1024 MDL Member

    Sep 18, 2010
    240
    42
    10
    Hello,
    How can I merge multiple *.swm files into one *.wim?
     
  5. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,207
    980
    90
    try with dism /export...
    its should take all swm and pack them to one wim
     
  6. nima1024

    nima1024 MDL Member

    Sep 18, 2010
    240
    42
    10
    Can you give me full command?

    I still use ImageX for this but I am very sure DISM is now capable of doing it much easier.
    imagex /ref install*.swm /check /export install.swm * install.wim "UniqueName"

    Maybe this command:
    dism /export-image /sourceimagefile:C:\install*.swm /sourceindex:* /destinationimagefile:C:\install.wim /checkintegrity /compress:maximum
     
  7. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,215
    84,880
    340
    #527 abbodi1406, Jul 19, 2014
    Last edited by a moderator: Apr 20, 2017
    No, imagex is easier. dism require identifying each index alone:
    Code:
    dism /Export-Image /SourceImageFile:C:\install.swm /SWMFile:C:\install*.swm /SourceIndex:1 /DestinationImageFile:C:\install.wim /CheckIntegrity
    dism /Export-Image /SourceImageFile:C:\install.swm /SWMFile:C:\install*.swm /SourceIndex:2 /DestinationImageFile:C:\install.wim /CheckIntegrity
    
     
  8. ryouga

    ryouga MDL Member

    Apr 15, 2008
    149
    2
    10
    #528 ryouga, Jul 20, 2014
    Last edited: Jul 20, 2014
    Sorry to butt in but can you give me a simple way of doing this, i.e imagex is a command prompt item so how do I load it and once into it where do I type where the install wims are located i.e lets say I move the 2 wims to root of my G drive then want to merge them.

    May sound stupid but I am inexperienced.

    EDIT sorry part of what confuses me is does the star correspond to the swm number i.e I type in install1.swm but does that automatically see the 2nd swm too.
     
  9. Wazoo

    Wazoo MDL Addicted

    Nov 5, 2013
    513
    273
    30
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. ryouga

    ryouga MDL Member

    Apr 15, 2008
    149
    2
    10
    Thanks 2 quick final things, what do I select in that, capture or mount or something else?

    Finally since the ADK is a large file(though I have fast internet) what is the minimum I need to download and install to get imagex to work.
     
  11. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #531 s1ave77, Jul 20, 2014
    Last edited: Jul 20, 2014
    You only need 'Assessment and Deployment Tools' from the adk (several MB to install), then run imagex or dism from it's own CMD (in Start Screen/Menu All Apps/Programs 'Assessment and Deployment Tools Command Prompt'; run as admin).

    For GimageX afaik nothing needs to be installed additionally :g:. Not sure if there was an option to merge SWMs :cool2:.


    ===============
    EDIT: Seems there is no option in GimageX :cool2:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. ryouga

    ryouga MDL Member

    Apr 15, 2008
    149
    2
    10
    Thanks thanks, still a tiny but unclear on navigating to the folder i.e do I do it like a normal command prompt i.e go to H drive if that is where my swm files are then copy and paste/type that command from above and thats it and as above does it just add all the swm files as one or do I hate to type like "install.swm1 install swm2" and I assume "uniquename" is just what I want to call the wim
     
  13. Wazoo

    Wazoo MDL Addicted

    Nov 5, 2013
    513
    273
    30
    Yes, seems as if it only works with wim files and does not replicate all the functions of imageX.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #534 s1ave77, Jul 20, 2014
    Last edited by a moderator: Apr 20, 2017
    You only need to open the Assessment and Deployment Toolkit CMD and there enter (as is):

    Code:
    imagex /ref "h:\install*.swm" /check /export "h:\install.swm" * "h:\install.wim" "UniqueName" 
    This assumes the SWM files residing on h: and writes install.wim to same location.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. ryouga

    ryouga MDL Member

    Apr 15, 2008
    149
    2
    10
    Thanks, I did it the way of H: then cd sources(as I moved the sources folder to root of drive) then the command from a page ago.

    Seems to be ok but seems to be taking ages, I have a i7 2700k and 16gb ram and no other processes running and it said 25 images processed in end and 35 minutes I assume thats normal?
     
  16. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    That can take a while for that much indices :g:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. ryouga

    ryouga MDL Member

    Apr 15, 2008
    149
    2
    10
    I think it was because I had it on a usb external hdd and AV enabled, I did the Windows 8 version stored to D drive and no AV and it took 6 minutes.

    By the way I notice that the file is about 4.2 gig and I need to add about 20 meg of drivers to 2 installations and .net 4.5.2 and directx9 but still want to fit it on 1 disc so I may just go a little over so wanted to convert it to esd, once I have integrated the drivers and software to the wim what is the command to convert it to esd? I assume it will just work automatically with setup also.
     
  18. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #538 s1ave77, Jul 20, 2014
    Last edited by a moderator: Apr 20, 2017
    Yep, Win 8.1.1 setup will handle the ESD. To convert:

    Code:
    dism /Export-Image /SourceImageFile:"h:\install.wim" /SourceIndex:1 /DestinationImageFile:"h:\install.esd" /compress:recovery /CheckIntegrity
    Re-do for every index :cool2:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. ryouga

    ryouga MDL Member

    Apr 15, 2008
    149
    2
    10
    Ok Ok, a quick question on indexes then, the original one was like a 24 in 1 and I had like 24 indexes so is the amount of versions in the wim the same thing as indexes i.e now I have removed all but 2 versions is it 2 indexes or still 24
     
  20. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #540 s1ave77, Jul 20, 2014
    Last edited by a moderator: Apr 20, 2017
    Normally one version per index, check all indices with:
    Code:
    DISM /Get-WimInfo /WimFile:"h:\install.wim"
    Check single index with verbose:
    Code:
    DISM /Get-WimInfo /WimFile:"h:\install.wim" /Index:1
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...