You are here:   Home
Dec
28
2007

Sysprep Unattend File in Windows Server 2008

E-mail
Written by Misha Hanin   
Sysprep Unattend File in Windows Server 2008Where is my sysprep INF answer file?

If you, like me, started working on the unattended sysprep configuration in Windows Server 2008 and is wondering where is the old good INF answer file, wonder no more - there is no INF file anymore. Instead, the answer file is now an XML file.

How to use the new sysprep XML answer file

To actually use the new answer file, create a new XML file and name it sysprep.xml. You are supposed to use the Windows System Image Manager to create the XML answer file. Windows System Image Manager is part of WAIK (Windows Automated Installation Kit) and can be downloaded here.

Copy the XML file to C:\Windows\System32\Sysprep. That is the default location of sysprep.exe in Windows Server 2008.

From that location, execute the following command:

 sysprep /generalize /oobe /shutdown /unattend:sysprep.xml 

The system will then shut down. The next time you start up the system (after cloning it), it will populate the XML file with the proper settings - Computer Name will be automatically generated.

 
More articles :

» What happens when you Sysprep a system running Hyper-V on Windows Server 2008 R2?

The short answer is: Everything just works.The long answer is as follows:Prior to Window Server 2008 R2 (namely in Windows Server 2008) you could run into a couple of problems.  In Windows Server 2008 R2 Microsoft has implemented a Sysprep...

» SYSPREP ERROR - "hrResults = 0x8030000b"

During one of Windows 2008 and Windows 7 deployment projects I've seen an error "Could not process or parse the answer file for [specialize] pass. Please restart."After hours of investigations I managed to find a solution, and now I'd like to let...

» Windows 7 / 2008 SYSPREP ERROR

As many of you know, I'm doing  a lot of projects related to system deployments. Sometimes it is servers, sometimes it's a workstations, sometimes it's both :).Right now I've been working on a project where we are going to deploy Windows 2008...