home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
95.86.62.111
/
95.86.62.111.tar
/
95.86.62.111
/
sql2000
/
sqlcli.bat
< prev
next >
Wrap
DOS Batch File
|
2000-07-15
|
478b
|
21 lines
@echo off
rem Performs SQL Server Client Unattended Install operation
rem Before running this batch file, you must edit the corresponding
rem unattended install file (sqlcli.iss), and enter your
rem Product Key (CD-Key) from your CD.
cls
echo *
echo Unattended install for SQL Server is starting.
echo *
echo *
echo Waiting for SQL Server Setup to finish...
@echo on
start /wait x86\setup\setupsql.exe -s -m -SMS -f1 "sqlcli.iss"
@echo off