home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 10 / Chip_Hitware_Vol_10.iso / chiphit / multmedi / 95licht / install.dll / 1001 / 1 / WIN32S.BAT < prev   
DOS Batch File  |  1997-02-22  |  1KB  |  53 lines

  1. @echo off
  2. echo This batch file copies 1 file (LGD9516.EXE) to your Windows directory
  3. echo and renames it to LGD9516.SCR.
  4. echo This is required because Windows 3.1 cannot use 32-bit screen savers.
  5. echo.
  6. echo Hit any key to continue or Ctrl+Break to abort
  7. pause
  8.  
  9. if not exist lgd9516.exe goto ERROR
  10.  
  11. if (%1) == () goto NOPARAM
  12.  
  13. if exist %1\win.com copy lgd9516.exe %1\lgd9516.scr
  14. if exist %1win.com copy lgd9516.exe %1lgd9516.scr
  15.  
  16. goto STEP2
  17.  
  18. :NOPARAM
  19. if not exist ..\win.com goto USAGE
  20. copy lgd9516.exe ..\lgd9516.scr
  21. echo Select the "LGD95 Win32s Loader" in the Control Panel (Desktop)
  22. echo to use 95 Lights Go Down with Win 3.1 / Win32s
  23.  
  24. goto STEP2
  25.  
  26. :USAGE
  27. echo.
  28. echo Please specify your Windows directory
  29. echo.
  30. echo Examples:
  31. echo   WIN32s C:\WINDOWS
  32. echo or
  33. echo   WIN32s C:\WINDOWS\
  34. echo
  35. goto ENDE
  36.  
  37. :ERROR
  38. echo.
  39. echo Run this batch file only from the directory where it was installed.
  40.  
  41. :ERROR2
  42. echo.
  43. echo You can run this batch file only once (because it renames files).
  44. echo.
  45. goto ENDE
  46.  
  47. :STEP2
  48. goto ENDE
  49.  
  50. :ENDE
  51. echo Batch file terminated
  52. pause
  53.