/new-DiscoverImage
Applies To: Windows Server 2008, Windows Server 2008 R2
Creates a new discover image from an existing boot image. Discover images are boot images that force the Setup.exe program to start in Windows Deployment Services mode and then discover a Windows Deployment Services server. Typically these images are used to deploy images to computers that are not capable of booting to PXE. For more information, see Creating Images (https://go.microsoft.com/fwlink/?LinkId=115311).
Syntax
WDSUTIL [Options] /New-DiscoverImage [/Server:<Server name>]
/Image:<Image name>
/Architecture:{x86 | ia64 | x64}
[/Filename:<File name>]
/DestinationImage
/FilePath:<File path and name>
[/Name:<Name>]
[/Description:<Description>]
[/WDSServer:<Server name>]
[/Overwrite:{Yes | No | Append}]
Parameters
Parameter | Description |
---|---|
[/Server:<Server name>] |
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 will be used. |
/Image:<Image name> |
Specifies the name of the source boot image. |
/Architecture:{x86 | ia64 | x64} |
Specifies the architecture of the image to be returned. Because it is possible to have the same image name for different boot images in different architectures, specifying the architecture value ensures that WDSUTIL returns the correct image. |
[/Filename:<File name>] |
If the image cannot be uniquely identified by name, you must use this option to specify the file name. |
/DestinationImage |
Specifies the settings for the destination image. You can specify the settings using the following options:
|
Examples
To create a discover image out of boot image, and name it WinPEDiscover.wim, type:
WDSUTIL /New-DiscoverImage /Image:"WinPE boot image" /Architecture:x86 /DestinationImage /FilePath:"C:\Temp\WinPEDiscover.wim"
To create a discover image out of boot image, and name it WinPEDiscover.wim with the specified settings, type:
WDSUTIL /Verbose /Progress /New-DiscoverImage /Server:MyWDSServer
/Image:"WinPE boot image" /Architecture:x64 /Filename:boot.wim /DestinationImage /FilePath:"\\Server\Share\WinPEDiscover.wim"
/Name:"New WinPE image" /Description:"WinPE image for WDS Client discovery" /Overwrite:No