Using scripting, you can automate the installation process of Windows Server 2003 and minimize the need for user intervention. Using an answer file (unattend.txt), you can provide all the information needed to complete the installation. Items such as the computer name, IP address, product key, and DNS settings can be written into the file. Unattended installations can be performed on fresh installations or on upgrades and on similar or dissimilar hardware. You can deploy Windows Server 2003 from a centralized installation point, and after you install the operating system, you can easily modify it. Deciding When to Use an Unattended InstallationOrganizations frequently use an unattended installation when they need to deploy multiple systems that are configured in a similar manner. Unlike imaging technologies, unattended installations work well with dissimilar hardware platforms. You can create one answer file, make a few modifications, and apply it to another server that you want configured similarly. This process is also useful for deploying remote systems that need to be built onsite when you may not be able to configure it yourself. The system configured at the remote site will be configured just like you want it to be. Using the Improved Setup ManagerThe Setup Manager is located in the deploy.cab file in the \support\tools directory on the Windows product CD. The Setup Manager can be used to create and modify the answer files for your unattended installations. Enhancements to the Setup Manager for Windows Server 2003 include the capability to encrypt the administrator password, which was formerly stored as plain text in the answer file. The Setup Manager also has an improved interface and an improved help file. Preparing for an Unattended InstallationTo prepare for an unattended installation, you must first install and run the Setup Manager. Although this application is included with the Windows Server 2003 installation media, it is not installed by default. To install the Setup Manager, perform the following steps:
Creating an Unattended Installation ScriptTo create an unattended answer file, open the folder where you placed the files you extracted. Double-click the Setupmgr.exe file and follow the instructions in the Setup Manager Wizard. Sample unattend.txt FileThe unattend.txt file can be extremely simple or extremely complex, ranging in size from a few dozen lines of code to a few hundred. The following is a sample unattend.txt file that was created in about five minutes using the Setup Manager: ;SetupMgrTag [Data] AutoPartition=1 MsDosInitiated="0" UnattendedInstall="Yes" [Unattended] UnattendMode=FullUnattended OemSkipEula=Yes OemPreinstall=Yes TargetPath=\WINDOWS [GuiUnattended] AdminPassword=xxxxxxxx EncryptedAdminPassword=Yes OEMSkipRegional=1 TimeZone=4 OemSkipWelcome=1 [UserData] ProductKey=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX FullName="Rand Morimoto" OrgName="Convergent Computing" ComputerName=WNS-Server-One [Display] Xresolution=800 YResolution=600 [LicenseFilePrintData] AutoMode=PerServer AutoUsers=10 [TapiLocation] CountryCode=1 Dialing=Tone AreaCode=510 [SetupMgr] DistFolder=C:\windist installation DistShare=windist [Components] accessopt=On calc=On charmap=On clipbook=On deskpaper=On templates=On mousepoint=On paint=On freecell=Off hearts=Off zonegames=Off minesweeper=Off solitaire=Off spider=Off indexsrv_system=On msnexplr=Off certsrv=Off certsrv_client=Off certsrv_server=Off iis_www=Off iis_ftp=Off iis_smtp=Off iis_smtp_docs=Off iis_nntp=Off iis_nntp_docs=Off reminst=Off rstorage=Off TerminalServer=On wms=Off wms_admin_asp=Off wms_admin_mmc=Off wms_server=Off chat=On dialer=On hypertrm=On cdplayer=On mplay=On media_clips=On media_utopia=On rec=On vol=On [Identification] JoinDomain=companyabc DomainAdmin=companyabc\administrator DomainAdminPassword=password [Networking] InstallDefaultComponents=No [NetAdapters] Adapter1=params.Adapter1 [params.Adapter1] INFID=* [NetClients] MS_MSClient=params.MS_MSClient [NetServices] MS_SERVER=params.MS_SERVER [NetProtocols] MS_TCPIP=params.MS_TCPIP [params.MS_TCPIP] DNS=No UseDomainNameDevolution=No EnableLMHosts=Yes AdapterSections=params.MS_TCPIP.Adapter1 [params.MS_TCPIP.Adapter1] SpecificTo=Adapter1 DHCP=No IPAddress=10.100.100.10 SubnetMask=255.255.255.0 DefaultGateway=10.100.100.1 DNSServerSearchOrder=10.100.100.50,10.100.100.51 WINS=Yes WinsServerList=10.100.100.60 NetBIOSOptions=0 As you customize and begin using unattended script files, you will find that they can save you an enormous amount of time installing Windows Server 2003 on multiple systems. Launching an Unattended Installation ScriptWhen the Setup Manager creates the unattend.txt file, it will also create a batch file called unattend.bat. The batch file gives the name of the answer file (unattend.txt) and the location of the source files (\\WINSERVER\windist\I386). Next, the installation process is kicked off by the winnt32 command and the switches to call the files. Note Because the setup files (in this case) are located on a Windows server, you will need network connectivity before starting the batch file. Sample unattend.bat FileThe unattend.bat file is the batch file used to launch the unattended installation. The steps of the batch file can be executed manually; however, if the process is repeated several times, running a batch file like the following one will simplify the process: @rem SetupMgrTag @echo off set AnswerFile=.\unattend.txt set SetupFiles=\\WINSERVER\windist\I386 \\WINSERVER\windist\I386\winnt32 /s:%SetupFiles% /unattend:%AnswerFile% |