For Install images: - WDSUTIL Options /Add-Image /ImageFile: /Server: /ImageType:Install /SkipVerify /ImageGroup: /SingleImage: ...

For Install images: ------------------- WDSUTIL [Options] /Add-Image /ImageFile:      [/Server:]      /ImageType:Install      [/SkipVerify]      [/ImageGroup:]      [/SingleImage:]          [/Name:]          [/Description:]      [/Filename:]      [/UnattendFile:]  [/SkipVerify]                        Specifies that integrity verification                                      should not be performed on the source                                      image file prior to image addition. [/ImageGroup:]     The image group to which the images                                      should be added. If not specified,                                      a default image group will be created                                      if none exists. If one already exists,                                      then it will be used. If more than one                                      image group exists on the server, then                                      the image group must be specified. [/SingleImage:]   Used for copying a single image out of                                      a WIM file.     [/Name:]                   Sets the display name of the image.     [/Description:]     Sets the description of the image. [/Filename:]               Allows for changing the file name of the                                      WIM file when adding the image.                                      If not specified, the source image file                                      name will be used. In all cases the                                      file name is checked for uniqueness at                                      the destination image group.                                      If more than one image is being added,                                      unique numbers are appended to the                                      filename; for example, filename.wim,                                      filename-(2).wim, filename-(3).wim. [/UnattendFile:] Full path to the unattended installation                                      file to be associated with the images(s)                                      being added. If /SingleImage is not                                      specified, the same file will be                                      associated with all images added from                                      the WIM file.   EXAMPLES: --------- To add a boot image: WDSUTIL /Add-Image /ImageFile:"C:\MyFolder\Boot.wim" /ImageType:Boot  WDSUTIL /Verbose /Progress /Add-Image /ImageFile:\\MyServer\Share\Boot.wim /Server:MyWDSServer /ImageType:Boot /Name:"My WinPE Image" /Description:"WinPE Image containing the WDS Client" /Filename:WDSBoot.wim  To add Install images: WDSUTIL /Add-Image /ImageFile:"C:\MyFolder\Install.wim" /ImageType:Install  WDSUTIL /Verbose /Progress /Add-Image /ImageFile:\\MyServer\Share \Install.wim /Server:MyWDSServer /ImageType:Install /ImageGroup:ImageGroup1 /SingleImage:"Windows Professional" /Name:"My WDS Image" /Description:"Windows Professional image with MSOffice" /Filename:"Win Pro.wim" /UnattendFile:"\\server\share\unattend.xml"