home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 32 / IOPROG_32.ISO / SOFT / SqlEval7 / sql70cli.bat < prev    next >
Encoding:
DOS Batch File  |  1998-11-23  |  652 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.  
  7. if '%PROCESSOR_ARCHITECTURE%'=='' goto Win9x
  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. @echo on
  21. start /wait %PROCESSOR_ARCHITECTURE%\setup\setupsql.exe -s -m -SMS -f1 "sql70cli.iss"
  22. @echo off
  23. goto END
  24. :Win9x
  25. echo "Use the Desktop Edition version of this file: deskecli.bat"
  26. :END
  27.  
  28.  
  29. :DONE
  30.