home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 32 / IOPROG_32.ISO / SOFT / SqlEval7 / sql70cst.bat < prev    next >
Encoding:
DOS Batch File  |  1998-11-23  |  649 b   |  30 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. echo *
  8. echo     Unattended install for SQL Server 7.0 is starting.
  9. echo *
  10. echo *
  11. echo     Waiting for SQL Server 7.0 Setup to finish...
  12.  
  13. rem last changed 2-05-97 12:00
  14.  
  15. rem =================================
  16. rem What Platform?
  17. rem =================================
  18.  
  19.  
  20. @echo on
  21. start /wait %PROCESSOR_ARCHITECTURE%\setup\setupsql.exe -s -SMS -f1 "sql70cst.iss"
  22. @echo off
  23. goto END
  24. :Win9x
  25. echo "Use the Desktop Edition version of this file: deskecst.bat"
  26. :END
  27.  
  28.  
  29. :DONE
  30.