Just found this article and thought others could make use of this information.
Scripted Unattended Install of The SMS 2003 Admin Console
This article was Previously posted on Don Hite's Blog
You can create an installation file to install the SMS admin console in unattended mode and kick the process off from within a Vbs script.
First you need to create a share on a server and copy the entire contents of the SMS installation CD to it. Then copy the Vbs script to the root of your SMS Install share and then copy the Console.Ini file to the ServerName\ShareName\SmsSetup\Bin\I386 directory.
When these objectives have been met simply execute the Console Install Vbs script and in a matter of a few minutes the console will be installed.
Here you will find the syntax of the Console Install Vbs script. It is set to run fully unattended with the NoUserInput switch appended to the end of the script. To ensure that word wrapping does not cause any problems the script has line numbers added. Remove the line numbers before saving the file as your Vbs script.
Vbs Script:
1. Dim oShell
2. Dim oExec
3. Set oShell = CreateObject("WScript.Shell")
4. Set oExec = oShell.Exec ("\\Server_Name\Share_Name\SmsSetup\Bin\I386\Setup.Exe /Script Console.Ini /NoUserInput")
Here you will find a very basic Ini installation file used with the script above. You can name it to something other than Console.Ini as is shown in the Vbs script above.
[Identification]
Action=InstallAdminUI
[Options]
FullName=YourName
OrgName=YourOrginization
SMSInstallDir=C:\SMSADMIN
SDKServer=PrimaryServerName
The default SMS install directory is C:\SMSADMIN but it can be set to a directory within the Program Files directory, another folder or another drive letter if you wish.
Note: [Identification] Action= can include any of the following, however the Ini file must have added options for the Primary and secondary site unattended installs:
InstallAdminUI.
SMS Administrator console
InstallPrimarySite.
Primary Site
InstallSecondarySite.
Secondary Site
For more information on executing an Unattended Setup follow the link below
Scripted Unattended Install of The SMS 2003 Admin Console
This article was Previously posted on Don Hite's Blog
You can create an installation file to install the SMS admin console in unattended mode and kick the process off from within a Vbs script.
First you need to create a share on a server and copy the entire contents of the SMS installation CD to it. Then copy the Vbs script to the root of your SMS Install share and then copy the Console.Ini file to the ServerName\ShareName\SmsSetup\Bin\I386 directory.
When these objectives have been met simply execute the Console Install Vbs script and in a matter of a few minutes the console will be installed.
Here you will find the syntax of the Console Install Vbs script. It is set to run fully unattended with the NoUserInput switch appended to the end of the script. To ensure that word wrapping does not cause any problems the script has line numbers added. Remove the line numbers before saving the file as your Vbs script.
Vbs Script:
1. Dim oShell
2. Dim oExec
3. Set oShell = CreateObject("WScript.Shell")
4. Set oExec = oShell.Exec ("\\Server_Name\Share_Name\SmsSetup\Bin\I386\Setup.Exe /Script Console.Ini /NoUserInput")
Here you will find a very basic Ini installation file used with the script above. You can name it to something other than Console.Ini as is shown in the Vbs script above.
[Identification]
Action=InstallAdminUI
[Options]
FullName=YourName
OrgName=YourOrginization
SMSInstallDir=C:\SMSADMIN
SDKServer=PrimaryServerName
The default SMS install directory is C:\SMSADMIN but it can be set to a directory within the Program Files directory, another folder or another drive letter if you wish.
Note: [Identification] Action= can include any of the following, however the Ini file must have added options for the Primary and secondary site unattended installs:
InstallAdminUI.
SMS Administrator console
InstallPrimarySite.
Primary Site
InstallSecondarySite.
Secondary Site
For more information on executing an Unattended Setup follow the link below