Win 7 AIO

Discussion in 'Windows 7' started by lunar21, Jan 6, 2011.

  1. lunar21

    lunar21 MDL Addicted

    Dec 14, 2008
    753
    270
    30
    #1 lunar21, Jan 6, 2011
    Last edited by a moderator: Apr 20, 2017
    Ok I have an AIO question. I already have an AIO of win 7 32 and 64 bit plus server builds that I made. But i would now like to add a few beta and RC builds on there (just for testing for now).

    When I run this code:

    Code:
    imagex /export c:\WIM\7000.WIM 4 c:\WIM\INSTALL.WIM “Ulti Build 7000”

    I get this error instead of the normal works:

    Code:
    C:\Program Files\Windows AIK\Tools\PETools>imagex /export c:\WIM\7000.WIM 4 c:\W
    IM\INSTALL.WIM "Ulti Build 7000"
    
    ImageX Tool for Windows
    Copyright (C) Microsoft Corp. All rights reserved.
    Version: 6.1.7600.16385
    
    IMAGEX [FLAGS] /EXPORT src_file src_number | src_name dest_file dest_name
    
    Exports a copy of the specified image to another WIM file.
    
      src_file - The path of the WIM file that contains the image to be copied.
      src_number - The number that identifies the image within the source WIM.
      src_name - The name that identifies the image within the source WIM.
      dest_file - The path of the WIM file that will receive the image copy.
      dest_name - The unique name for the image in the destination WIM.
    
    Accepted FLAGS:
    
      /BOOT
      Marks a volume image as bootable. Available for Windows PE images only.
    
      /CHECK
      Enables WIM integrity checking. If not provided, existing checks are removed.
    
      /COMPRESS [maximum | fast | none]
      Specifies the type of compression used when exporting to a new WIM file.
    
      /REF splitwim2.swm
      Enables the reference of split WIM (SWM) files.
    
      splitwim2.swm - Path to additional split file(s). Wild cards are accepted.
    
      /TEMP
      Specifies the path where temporary files are stored.
    
    Comments:
      If src_name is "*" then all images are exported to dest_file.
    
    Example:
      imagex /export d:\imaging\data.wim 1 d:\imaging\newfile.wim "Exported Image"
    
    C:\Program Files\Windows AIK\Tools\PETools>

    Does anybody know what, if anything, I am doing wrong? I know it is not the fact that I am using a beta, as I get this error if I am using an RTM wim for both.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Sliden

    Sliden MDL Junior Member

    May 20, 2009
    90
    53
    0
    #2 Sliden, Jan 6, 2011
    Last edited by a moderator: Apr 20, 2017
    Hello lunar21

    Code:
    imagex /export c:\WIM\7000.WIM 4 c:\WIM\INSTALL.WIM “Ulti Build 7000”
    You could test this

    Code:
    imagex/export c:\WIM\7000.WIM 4 * c:\WIM\INSTALL.WIM
    Code:
    imagex/export c:\WIM\7000.WIM 4 * c:\WIM\INSTALL.WIM “Ulti Build 7000”
    Code:
    imagex/export c:\WIM\7000.WIM 4 * c:\WIM\INSTALL.WIM “Ulti Build 7000”/boot /check /compress maximum
     
  3. lunar21

    lunar21 MDL Addicted

    Dec 14, 2008
    753
    270
    30
    Thank you for your help, but i got it to work. I just moved all files I needed to make this work into another folder, then made my own .cmd files with what i wanted to happen and it worked LOL
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Sliden

    Sliden MDL Junior Member

    May 20, 2009
    90
    53
    0
    OK thank you for your answer.