A systems engineer is preparing a automated enterprise network deployment of Windows to 200 new workstations. Place the steps for image preparation, network service configuration, and client deployment in the correct chronological order from first to last.
- 1Customize the master reference OS configuration and execute 'sysprep.exe /generalize /oobe /shutdown' to strip system-specific Security Identifiers (SIDs).
- 2Boot the reference system into a Windows Preinstallation Environment (WinPE) and capture the OS partition into a .wim image file using DISM.
- 3Import the captured .wim file into Windows Deployment Services (WDS) and configure DHCP Server Options 66 (Boot Server Host Name) and 67 (Bootfile Name).
- 4Configure the target client workstations' UEFI firmware to enable Preboot Execution Environment (PXE) network boot as the primary boot device.
- 5Boot the target workstations over the network to load WinPE from TFTP and automatically apply the unattend.xml configuration file during image installation.
Answer
The correct sequence for image-based network deployment is: 1) Run 'sysprep.exe /generalize /oobe /shutdown' on the reference OS -> 2) Boot reference machine into WinPE and capture the volume using DISM -> 3) Upload the .wim file to WDS and configure DHCP Options 66 and 67 -> 4) Set target client UEFI firmware boot order to network/PXE -> 5) Execute target client PXE boot to retrieve WinPE via TFTP and apply unattend.xml.
The deployment process strictly follows a prepare-capture-host-configure-deploy workflow: First, the reference OS must be generalized using sysprep.exe /generalize to remove unique SIDs and driver bindings. Second, the offline partition is captured into a .wim file using DISM in WinPE. Third, the .wim file is loaded onto WDS while DHCP Options 66 (boot server IP) and 67 (bootfile name) are configured to direct clients. Fourth, target client devices are set to PXE boot in UEFI. Finally, the target machines boot via PXE, receive boot parameters from DHCP/TFTP, load WinPE, and execute the unattended installation file.
Step-by-Step Solution
Key Concept
Automated Network Deployment Sequence (Sysprep -> DISM Capture -> WDS/DHCP PXE -> Client Unattended Install)