home *** CD-ROM | disk | FTP | other *** search
/ Maximum 3D 3 / m3d-p3.iso / PROGRAM / LIGHTSCP.311 / LS311.R19 / SETUP.BAT < prev    next >
DOS Batch File  |  1997-09-16  |  1KB  |  48 lines

  1. @echo off
  2. if "%OS%"=="Windows_NT" setlocal
  3. rem Copyright (C) 1996 Lightscape Technologies, Inc.  All rights reserved.
  4. rem
  5. rem setup.bat:
  6. rem    Invoke the appropriate LVS installer setup.exe for this platform.
  7. rem    This can be run via the File Manager or the Program Manager.
  8. rem    
  9.  
  10. rem   Environment variables not defined under Windows 95.
  11. if not "%OS%"=="Windows_NT" goto checks_ok
  12. if not "%PROCESSOR_ARCHITECTURE%"=="x86" goto not_intel
  13. :checks_ok
  14. set _dir=I386\disk1
  15. set _setup_dir=%0%\..\I386\disk1
  16.  
  17. rem   Install
  18. if not exist %_setup_dir%\setup.exe goto no_installer
  19. start %_setup_dir%\setup.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
  20. goto end
  21.  
  22.  
  23. rem    *** ERROR MESSAGES ***
  24.  
  25. :not_intel
  26. echo.
  27. echo Sorry, this CD only contains Lightscape for Intel platforms running
  28. echo Windows 95 or Windows NT.
  29. goto error_exit
  30.  
  31. :no_installer
  32. echo.
  33. echo The Lightscape installer must be invoked from the top-level directory
  34. echo of the CD-ROM.  If you continue to have trouble, try directly invoking
  35. echo %_dir%\setup.exe.
  36. goto error_exit
  37.  
  38.  
  39. :error_exit
  40. echo.
  41. echo ---------------------------------------------------------------------------
  42. rem  We pause so the window doesn't disappear, in case we were invoked
  43. rem  from the File Manager or Program Manager.
  44. pause
  45.  
  46. :end
  47. if "%OS%"=="Windows_NT" endlocal
  48.