text
stringlengths
0
4.23k
Specifies the settings for the destination image. Uses the following options;/FilePath:<Filepath and name> - Sets the full file path for the new file. For example: C:\Temp\convert.wim[/Name:<Name>] - Sets the display name of the image. If no display name is specified, the display name of the source image is used.[/Description:<Description>] - Sets the description of the image.[/InPlace] - Specifies that the conversion should take place on the original RIPrep image and not on a copy of the original image, which is the default behavior.[/Overwrite:{Yes | No | Append} - Sets whether this image should overwrite or append any existing files.
<Filepath and name>
/FilePath:<Filepath and name>
/Name:<Name>
/Description:<Description>
/Overwrite:{Yes | No | Append}
Examples
To convert the specified RIPrep.sif image to RIPREP.wim, type:
wdsutil /Convert-RiPrepImage /FilePath:R:\RemoteInstall\Setup\English \Images\Win2k3.SP1\i386\Templates\riprep.sif /DestinationImage /FilePath:C:\Temp\RIPREP.wim
To convert the specified RIPrep.sif image to RIPREP.wim with the specified name and description, and overwrite it with the new file if a file already exists, type:
wdsutil /Verbose /Progress /Convert-RiPrepImage /FilePath:\\Server \RemInst\Setup\English\Images\WinXP.SP2\i386\Templates\riprep.sif /DestinationImage /FilePath:\\Server\Share\RIPREP.wim /Name:WindowsXP image /Description:Converted RIPREP image of WindowsXP /Overwrite:Append
copy-drivergroup
Duplicates an existing driver group on the server including the filters, driver packages, and enabled/disabled status.
Syntax
wdsutil /Copy-DriverGroup [/Server:<Server name>] /DriverGroup:<Source Groupname> /GroupName:<New Groupname>
Parameters
Parameter
Description
/Server:<Servername>
Specifies the name of the server. This can be the NetBIOS name or the FQDN. If no server name is specified, the local server is used.
/DriverGroup:<Source Groupname>
Specifies the name of the source driver group.
/GroupName:<New Groupname>
Specifies the name of the new driver group.
<Servername>
<Source Groupname>
<New Groupname>
Examples
To copy a driver group, type either:
wdsutil /Copy-DriverGroup /Server:MyWdsServer /DriverGroup:PrinterDrivers /GroupName:X86PrinterDrivers
wdsutil /Copy-DriverGroup /DriverGroup:PrinterDrivers /GroupName:ColorPrinterDrivers
wdsutil copy-image
Applies to: Windows Server 2022, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012
Copies images that are within the same image group. To copy images between image groups, use the wdsutil Export-Image command command and then the wdsutil add-Image command command.
Syntax
wdsutil [Options] /copy-Image image:<Image name> [/Server:<Server name>] imagetype:Install imageGroup:<Image group name>] [/Filename:<File name>] /DestinationImage /Name:<Name> /Filename:<File name> [/Description:<Description>]
Parameters
Parameter
Description
image:<Imagename>
Specifies the name of the image to be copied.
[/Server:<Servername>]
Specifies the name of the server. This can be either the NetBIOS name or the fully qualified domain name (FQDN). If no server name is specified, the local server is used.
imagetype:Install
Specifies the type of image to be copied. This option must be set to install.
\imageGroup:<Image groupname>]
Specifies the image group that contains the image to be copied. If no image group is specified and only one group exists on the server, that image group is used by default. If more than one image group exists on the server, you must specify the image group.
[/Filename:<Filename>]
Specifies the file name of the image to be copied. If the source image cannot be uniquely identified by name, you must specify the file name.
/DestinationImage
Specifies the settings for the destination image. The valid values are:/Name:<Name> - Sets the display name of the image to be copied./Filename:<Filename> - Sets the name of the destination image file that will contain the image copy.[/Description:<Description>] - Sets the description of the image copy.
<Imagename>
<Servername>
<Image groupname>
<Filename>
<Name>
<Filename>
<Description>
Examples
To create a copy of the specified image and name it WindowsVista.wim, type:
wdsutil /copy-Image image:Windows Vista with Office imagetype:Install /DestinationImage /Name:copy of Windows Vista with Office / Filename:WindowsVista.wim
To create a copy of the specified image, apply the specified settings, and name the copy WindowsVista.wim, type:
wdsutil /verbose /Progress /copy-Image image:Windows Vista with Office /Server:MyWDSServe imagetype:Install imageGroup:ImageGroup1
/Filename:install.wim /DestinationImage /Name:copy of Windows Vista with Office /Filename:WindowsVista.wim /Description:This is a copy of the original Windows image with Office installed