Zum Inhalt springen
IT Explorations

How To - Start- und Installationsabbild importieren mit WDSUTIL

· zuletzt aktualisiert am · 1 min Lesezeit · von

Inhalt

Windows Deployment Services Logo

Aktueller Stand#

Stand: Juni 2026

Voraussetzungen / Prerequisites#

Übersicht#

Folgende Konfigurationseinstellungen sollen konfiguriert werden:

  1. Startabbild importieren / Import Boot Image
  2. Installationsabbild importieren / Import Install Image

1. Startabbild importieren / Import Boot Image#

WDSUTIL /Add-Image /ImageFile:"LW:\sources\Boot.wim" /ImageType:Boot
WDSUTIL /Verbose /Progress /Add-Image /ImageFile:\\Server\Freigabe\Boot.wim /Server:WDS-SERVER /ImageType:Boot /Name:"BOOT-WIN8.1-SETUP-DRIVER-X64" /Description:"BOOT-WIN8.1-SETUP-DRIVER-X64" /Priority:500 /Filename:WDSBoot.wim

2. Installationsabbild importieren / Import Install Image#

2.1 Installationsgruppe anlegen / Create Install Image Group#

WDSUTIL /Add-ImageGroup /ImageGroup:"Windows 10"

2.2 Installationsabbild importieren / Import Install Image#

WDSUTIL /Add-Image /ImageFile:"C:\MyFolder\Install.wim" /ImageType:Install
WDSUTIL /Verbose /Progress /Add-Image /ImageFile:\\MyServer\Share\Install.wim /Server:MyWDSServer /ImageType:Install /ImageGroup:ImageGroup1
/SingleImage:"Windows Professional" /Name:"My WDS Image" /Description:"Windows Professional image with MSOffice" /Filename:"Win Pro.wim" /Priority:500 /UnattendFile:"\\server\share\unattend.xml"

Kategorien: Windows Deployment Services

Verwandte Beiträge