replace-Image Command In Windows Server 2008

In this article I am going to explain about replace-Image Command in Windows Server 2008 operating system and also explain it's related syntax.
  • 2183

Introduction

In this we Replaces an existing image with a new version of that image.

Syntax f
or boot images
 

WDSUTIL [Options] /Replace-Image /Image:<Image name> [/Server:<Server name>]
/ImageType:Boot
/Architecture:{x86 | ia64 | x64}
[/Filename:<File name>]
/ReplacementImage
/ImageFile:<wim file path>
[/Name:<Image name>]
[/Description:<Image description>]

Syntax for install images
 

WDSUTIL [Options] /Replace-Image /Image:<Image name> [/Server:<Server name>]
/ImageType:Install
[/ImageGroup:<Image group name>]
[/Filename:<File name>]
/ReplacementImage
/ImageFile:<wim file path>
[/SourceImage:<Source image name>]
[/Name:<Image name>]
[/Description:<Image description>]

 

 Parameter  Description
 /Image:<Image name> It specifies the ID of the client to be disconnected.
 [/Server:<Server name>] It specifies the name of the server.
/ImageType:{Boot | Install} It specifies the type of image to be exported.
/Architecture:{x86 | ia64 | x64} specifies the architecture of the image to be exported.
[/Filename:<Filename>] If the image cannot be uniquely identified by name, the file name must be specified.
/ReplacementImage It specifies the settings for the replacement image. You set


Example

WDSUTIL /Replace-Image /Image:"WinPE Boot Image" /ImageType:Boot /Architecture:x86 /ReplacementImage /ImageFile:"C:\MyFolder\Boot.wim"
WDSUTIL /Verbose /Progress /Replace-Image /Image:"WinPE Boot Image" /Server:MyWDSServer /ImageType:Boot /Architecture:x64 /Filename:boot.wim
/ReplacementImage /ImageFile:\\MyServer\Share\Boot.wim /Name:"My WinPE Image" /Description:"WinPE Image with drivers"

Ask Your Question

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.