home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / NEWS / 1662 / ALTSETUP.BAT < prev    next >
DOS Batch File  |  1993-10-07  |  2KB  |  47 lines

  1. @echo off
  2. cls
  3. echo Alternate Installation for Route 1 v4.0.
  4. echo                           (use only if INSTALL.EXE fails)
  5. echo                                                                               .
  6. echo Syntax:
  7. echo     ALTSETUP [destdir]
  8. echo where:
  9. echo     destdir is the full pathname of the destination directory.
  10. echo             (if it is left out, ALSETUP will fail)
  11. echo example:
  12. echo     altsetup c:\windows\route1
  13. echo                                                                               .
  14. echo ALTSETUP will create destdir, if it can, and copy the files to it.
  15. echo Make sure that EXPAND.EXE (comes with Windows & DOS) is in the path.
  16. echo                                                                               .
  17. echo press Ctrl-C to cancel, or
  18. if "%1" == "" goto quit
  19. pause
  20.  
  21. md %1
  22. copy VBRUN200.DLL %1
  23. copy README1.TXT %1
  24. expand r1icons.dl_ %1\r1icons.dll
  25. expand 1trash.ex_ %1\1trash.exe
  26. expand putfocus.ex_ %1\putfocus.exe
  27. expand taskmenu.ex_ %1\taskmenu.exe
  28. expand route1.ex_ %1\route1.exe
  29. expand rs1ed.ex_ %1\rs1ed.exe
  30. expand rs1run.ex_ %1\rs1run.exe
  31. expand route1.hl_ %1\route1.hlp
  32. expand rs1ed.hl_ %1\rs1ed.hlp
  33. expand blank.ic_ %1\blank.ico
  34. expand route1.in_ %1\route1.ini
  35. expand route1.ov_ %1\route1.ovl
  36. expand startup.rs_ %1\startup.rs1
  37. expand timer.rs_ %1\timer.rs1
  38. expand route1.rs_ %1\route1.rs1
  39. expand orderfrm.wr_ %1\orderfrm.wri
  40. if exist r1reg.ex_ expand r1reg.ex_ %1\r1reg.exe
  41. goto last
  42.  
  43. :quit
  44. echo                                                                               .
  45. echo You must specify a target directory!
  46. :last
  47.