home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem Performs MSDE Unattended Install operation
-
- cls
-
- echo *
- echo Unattended install for MSDE is starting.
- echo *
- echo *
- echo Waiting for MSDE Setup to finish...
-
- rem last changed 2-05-97 12:00
-
- if '%PROCESSOR_ARCHITECTURE%'=='' goto Win9x
- @echo on
- start /wait %PROCESSOR_ARCHITECTURE%\setup\setupsql.exe -s -SMS -f1 "sql70ins.iss"
- @echo off
- goto END
- :Win9x
- @echo on
- start /wait x86\setup\setupsql.exe -s -SMS -f1 "sql70ins.iss"
- @echo off
- :END
-
-
- :DONE
-