Voraussetzungen / Prerequisites
- Installierte Rolle Windows Bereitstellungsdienste / Windows Deployment Services
- Windows Server / Windows 10 etc. Installationsmedium oder Installationsdateien. In diesem Fall Windows 10 Enterprise.
- Windows Powershell mit administrativen Berechtigungen ( Als Administrator ausführen / Run as Administrator )
Übersicht
Folgende Konfigurationseinstellungen sollen konfiguriert werden:List
- Startabbild importieren / Import Boot Image
- 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"