Description: Used to create a WinPE boot image that will run the WDS image capture utility (WDSCapture.exe) instead of the ...

Description: Used to create a WinPE boot image that will run the WDS image              capture utility (WDSCapture.exe) instead of the WDS client. This              WinPE image will help you create an operating system image of an              existing Windows installation.  Syntax: WDSUTIL [Options] /New-CaptureImage [/Server:]      /Image:      /Architecture:{x86 | ia64 | x64}      [/Filename:]      /DestinationImage         /FilePath:         [/Name:]         [/Description:]         [/Overwrite:{Yes | No | Append}]         [/UnattendFilePath:]  [/Server:]              The name of the WDS Server. This can be                                      either the NetBIOS name or the FQDN.                                      If not specified, the local server will                                      be used. /Image:                  The name of the source boot image. /Architecture:{x86 | ia64 | x64}     The architecture of the image to be                                      returned. Since it is possible to have                                      the same image name for boot images in                                      different architectures, specifying the                                      architecture value ensures that WDSUTIL                                      is returning the correct image. [/Filename:]               If the image cannot be uniquely                                      identified by name, the filename must be                                      specified. /DestinationImage     /FilePath:   Specify the full file path and name where                                      the new capture image should be created.     [/Name:]                   Sets the display name of the image. If                                      not specified, the display name of the                                      source image will be used.     [/Description:]     Sets the description for the image.     [/Overwrite:{Yes | No | Append}] Determines whether the file specified                                      in /DestinationImage should be                                      overwritten if an existing file with that                                      name already exists. If yes, the existing                                      file will be overwritten.                                      If no, the process will error                                      if a file with the same name exists.                                      Append indicates that if a WIM file with                                      the same name already exists, the                                      generated image should be appended as a                                      new image within the existing WIM file.                                      The default value is 'No'.     [/UnattendFilePath:]  Sets the full path and name to the WDS                                      unattended image capture file.   EXAMPLES: --------- WDSUTIL /New-CaptureImage /Image:"WinPE boot image" /Architecture:x86 /DestinationImage /FilePath:"C:	emp\WinPECapture.wim"  WDSUTIL /Verbose /Progress /New-CaptureImage /Server:MyWDSServer /Image:"WinPE boot image" /Architecture:x64 /Filename:boot.wim /DestinationImage /FilePath:"\\Server\Share\WinPECapture.wim" /Name:"New WinPE image" /Description:"WinPE image with capture utility" /Overwrite:No /UnattendFilePath:"\\Server\Share\WDSCapture.inf"