home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 32 / IOPROG_32.ISO / SOFT / SqlEval7 / sql70ins.bat < prev    next >
Encoding:
DOS Batch File  |  1998-11-23  |  654 b   |  31 lines

  1. @echo off
  2. rem     Performs SQL Server 7.0 Standard Edition Unattended Install operation
  3. rem     for NT Server
  4.  
  5. cls
  6. if '%PROCESSOR_ARCHITECTURE%'=='' goto Win9x
  7.  
  8. echo *
  9. echo     Unattended install for SQL Server 7.0 is starting.
  10. echo *
  11. echo *
  12. echo     Waiting for SQL Server 7.0 Setup to finish...
  13.  
  14. rem last changed 2-05-97 12:00
  15.  
  16. rem =================================
  17. rem What Platform?
  18. rem =================================
  19.  
  20.  
  21. @echo on
  22. start /wait %PROCESSOR_ARCHITECTURE%\setup\setupsql.exe -s -m -SMS -f1 "sql70ins.iss"
  23. @echo off
  24. goto END
  25. :Win9x
  26. echo "Use the Desktop Edition version of this file: deskeins.bat"
  27. :END
  28.  
  29.  
  30. :DONE
  31.