To create the package source directory for SQL Server, create the package source directory (for example, D:\SQL65, if you want to put the directory on the D: drive) on a server and share it with the same name (SQL65). Then copy the directories and files from the Microsoft SQL Server CD-ROM to the package source directory (you can use the xcopy command to copy the files).
For information about the format of the installation script, see "Unattended Installation" in Microsoft SQL Server Setup.
The Package Properties dialog box appears.
The Package Properties dialog box now displays SQL Server 6.5 in the Name box.
The SQL Server package now appears in the Packages window. Use the SQL Server package to create Run Command on Workstation tasks to install SQL Server.
Important Installation scripts must be used with the Package Command Manager client software. The installation scripts cannot be run by the Package Command Manager service.This means that you must leave the System Background Task option disabled in the Command Line Properties of the commands in the SQL Server package.
To install SQL Server on drives other than drive C:, modify SMSSQL65.INI. We recommend that you create an SMSSQL65_drive.INI file for each target drive. Use a query to identify computers that have the customized SMSSQL65_drive.INI file and that have enough free disk space on those drives. You can also create queries that impose other requirements, such as amount of RAM or an existing SQL Server .
For example, to find all Windows NT Server computers with enough free space on C: to fully install SQL Server and that are running Windows NT version 3.51 and greater, use the following query:
( MICROSOFT|DISK|1.0:Disk Index is 'C' AND MICROSOFT|DISK|1.0:Free Storage (MByte) is greater than or equal to '90' ) AND ( MICROSOFT|OPERATING_SYSTEM|1.0:Operating System Name is 'Microsoft Windows NT' AND MICROSOFT|OPERATING_SYSTEM|1.0:Version is same as or comes after '3.51' )
After you run the query, you can add the selected computers from the query result to a machine group and then use the machine group to specify the target computers where you want to install SQL Server.
You can also specify the query as a target. SMS will evaluate the query when it activates the job used to install the SQL Server package and will use that result as the list of target computers. For information about creating queries and machine groups, see the Microsoft Systems Management Server documentation.
The Job Properties dialog box appears.
When the job completes, SQL Server will be installed on all target computers on drive C: by default.