home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem Performs SQL Server 7.0 Standard Edition Unattended Install operation
- rem for NT Server
-
- cls
-
- if '%PROCESSOR_ARCHITECTURE%'=='' goto Win9x
- echo *
- echo Unattended install for SQL Server 7.0 is starting.
- echo *
- echo *
- echo Waiting for SQL Server 7.0 Setup to finish...
-
- rem last changed 2-05-97 12:00
-
- rem =================================
- rem What Platform?
- rem =================================
-
- @echo on
- start /wait %PROCESSOR_ARCHITECTURE%\setup\setupsql.exe -s -m -SMS -f1 "sql70cli.iss"
- @echo off
- goto END
- :Win9x
- echo "Use the Desktop Edition version of this file: deskecli.bat"
- :END
-
-
- :DONE
-