For Install images: - WDSUTIL Options /Set-Image /Image: /Server: /ImageType:Install /ImageGroup: /Filename: /Name: /Description: ...

For Install images: ------------------- WDSUTIL [Options] /Set-Image /Image: [/Server:]      /ImageType:Install [/ImageGroup:]      [/Filename:]      [/Name:]      [/Description:]      [/UserFilter:]      [/Enabled:{Yes | No}]      [/UnattendFile:]          [/OverwriteUnattend:{Yes | No}]  [/ImageGroup:]     The image group containing the image to                                      be modified. If not specified and only                                      one image group exists on the server,                                      that image group will be used by                                      default. If more than one image group                                      exists on the server, then the image                                      group must be specified. [/Filename:]               If the image cannot be uniquely                                      identified by name, the filename must                                      be specified. [/Name]                              Sets the name of the image. [/Description:]         Sets the description of the image. [/UserFilter:]                 Sets the user filter on the image. The                                      filter string must be in SDDL format.                                      Note that, unlike the /Security parameter                                      on image groups, this property only                                      restricts who can see the image                                      definition, and not the actual image file                                      resources.                                      To restrict access to the file resources,                                      and thus access to all images within                                      an image group, set security on the                                      image group itself. [/Enabled:{Yes | No}]                Sets the enabled/disabled flag of the                                      image. [/UnattendFile:] Sets the full path to the unattended                                      installation file to be associated with                                      the image, for example,                                      "D:\Files\Unattend\Img1Unattend.xml".     [/OverwriteUnattend:{Yes | No}]  If an unattend file is already associated                                      with the image, this setting determines                                      whether it will be overwritten.                                      The default is 'No'.   EXAMPLES: --------- To set values for a boot image: WDSUTIL /Set-Image /Image:"WinPE boot image" /ImageType:Boot /Architecture:x86 /Description:"New description"  WDSUTIL /Verbose /Set-Image /Image:"WinPE boot image" /Server:MyWDSServer /ImageType:Boot /Architecture:x86 /Filename:boot.wim /Name:"New Name" /Description:"New Description" /Enabled:Yes  To set values for an install image: WDSUTIL /Set-Image /Image:"Windows Vista with Office" /ImageType:Install /Description:"New description"  WDSUTIL /Verbose /Set-Image /Image:"Windows Vista with Office" /Server:MyWDSServer /ImageType:Install /ImageGroup:ImageGroup1 /Filename:install.wim /Name:"New name" /Description:"New description" /UserFilter:"O:BAG:DUD:AI(A;ID;FA;;;SY)(A;ID;FA;;;BA)(A;ID;0x1200a9;;;AU)" /Enabled:Yes /UnattendFile:"\\server\share\unattend.xml" /OverwriteUnattend:Yes