Difficulty: Medium
Correct Answer: Install Windows 2000 Server; use Setup Manager to create sysprep.inf for Sysprep and run sysprep -noidgen
Explanation:
Introduction / Context:
Windows 2000 supports two primary automated deployment paths: unattended setup (using Unattend.txt and optional UDF files) and disk imaging with Sysprep (using sysprep.inf and Mini-Setup on first boot). When you need to fully preinstall and test systems in a lab, then hand off last-mile identity details—like product key and computer name—to remote users, Sysprep with Mini-Setup is the right tool.
Given Data / Assumptions:
Concept / Approach:
Sysprep generalizes an installation and prepares it for imaging. A sysprep.inf file controls Mini-Setup prompts. If you omit ProductKey and ComputerName (or use prompts), Mini-Setup will ask the receiving user for those values. While the -noidgen switch is not generally recommended for mass deployment (unique SIDs are preferred), classic exam practice associated the combination “Sysprep + sysprep.inf + prompt for identity on first boot” with this choice. Unattended setup with Unattend.txt and UDF is better when you are installing fresh at the remote site, not when shipping preinstalled, tested images.
Step-by-Step Solution:
Verification / Alternative check:
Confirm that Mini-Setup runs on first boot and prompts for values. Validate that the deployed machines join the intended workgroup/domain configuration as required afterward.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing Unattend.txt with sysprep.inf; forgetting to test Mini-Setup prompts; duplicating SIDs if improper Sysprep usage is chosen (ensure best practices in real deployments).
Final Answer:
Install Windows 2000 Server; use Setup Manager to create sysprep.inf for Sysprep and run sysprep -noidgen.
Discussion & Comments