Here you will find a VBS script as well as an example unattended install Ini file to use to install your ConfigMgr 2007 Primary Site server.
VBS Script:
Set oShell = CreateObject("WScript.Shell")
Set oExec = oShell.Exec ("Setup /Script Media:\Setup\Setup.Ini.")
Below you will find a very basic Setup.Ini installation file that can be used with the script above. You can name it to something other than Setup.Ini as is shown in the VBS script as long as the Ini file name referenced in the script above matches the Ini file name that you create.
[Identification]
Action=InstallPrimarySite
[Options]
ProductID=XXX-XXX-XXX-XXX-XXX
PrerequisiteComp=0 (No) 1 (Yes)
PrerequisitePath=Prerequisite file Path location
SiteCode=XXX
SiteName=Your Site Name
SMSInstallDir= C:\Program Files\Microsoft Configuration Manager
ManagementPoint=MP Site Name
SDKServer=SMS Provider Server Name
[SQLConfigOptions]
SQLServerName=SQL Server Name
CreateSQLDevice=0 (No) 1 (Yes)
DatabaseName=SMS_SiteCode
Additional Information:
Unattended Setup Overview
http://technet.microsoft.com/en-us/library/bb693561.aspx
No Comments