Question

Difficulty: MediumOS Installation and Upgrade Methods

A system administrator is preparing to deploy a customized Windows image across multiple corporate workstations using automated network deployment scripts. Which of the following actions are required to properly prepare the reference image and installation media for an unattended deployment? (Select TWO).

  1. Run the System Preparation (Sysprep) tool with the /generalize option to strip system-specific security identifiers (SIDs) prior to image capture.Answer
  2. Place the autounattend.xml answer file at the root directory of the installation media to bypass manual setup prompts automatically.Answer
  3. C
    Execute the sfc /f command from the Command Prompt during the pre-boot phase to reformat the primary partition to GPT.
  4. D
    Configure the answer file script to perform a direct in-place upgrade from a 32-bit operating system architecture to a 64-bit operating system architecture.

Answer

Generalizing the reference image using Sysprep with the /generalize parameter and placing the autounattend.xml file at the root of the installation media are both required steps for automated Windows unattended deployment.
Running the Sysprep tool with the /generalize parameter removes system-specific configuration data and unique SIDs so the image can be duplicated onto multiple machines. Placing an autounattend.xml file in the root directory of the installation media instructs Windows Setup to read configuration settings automatically without prompting the user.

Step-by-Step Solution

1
Prepare the reference system for image capture by removing hardware-specific settings and unique SIDs.
Running Sysprep /generalize prepares the OS image so it can be deployed to distinct systems without SID conflicts.
Deploying an ungeneralized image creates duplicate Security Identifiers (SIDs) across a network domain.
2
Automate Windows Setup responses using an answer file.
Placing autounattend.xml at the root of the installation media allows setup to parse configurations automatically.
Windows Setup looks specifically for autounattend.xml at root drives during initial initialization.

Key Concept

Unattended OS Deployment and Image Generalization
Rate this question