home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Magazin 1996 December / 1296.BIN / install.bat < prev    next >
DOS Batch File  |  1996-06-07  |  818b  |  41 lines

  1. @echo off
  2. echo Installing Wingstar...
  3. if "%1" == "" goto default
  4. if "%2" == "" goto usage
  5.  
  6. :custom
  7. md %1%2
  8. copy wingstar.exe %1%2 > NUL
  9. copy setup.exe %1%2 > NUL
  10. copy dos4gw.exe %1%2 > NUL
  11. copy wingstar.olb %1%2 > NUL
  12. copy joystick.exe %1%2 > NUL
  13. %1
  14. cd %2
  15. goto end
  16.  
  17. :default
  18. echo Do you wish to install to the default location (c:\wingstar)
  19. echo otherwise press [Ctrl]+C now and type install [drive:] [path]
  20. pause
  21. md c:\wingstar
  22. copy wingstar.exe c:\wingstar
  23. copy setup.exe c:\wingstar
  24. copy dos4gw.exe c:\wingstar
  25. copy wingstar.olb c:\wingstar
  26. copy joystick.exe c:\wingstar
  27. c:
  28. cd \wingstar
  29. goto end
  30.  
  31. :usage
  32. echo Please type install [drive:] [path]
  33. echo E.g. install c: \games\wingstar
  34. echo Remember a space caracter between the drive and the path
  35. goto error
  36.  
  37. :end
  38. setup
  39.  
  40. :error
  41.