home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / PSION / MISC / DPBANK / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-10-27  |  1.2 KB  |  48 lines

  1. @echo off
  2. REM
  3. REM DPBank Install script for RCOM
  4. REM
  5. REM %1 should be I: , L: or R:
  6. if %1.==I:. goto ok
  7. if %1.==L:. goto ok
  8. if %1.==R:. goto ok
  9. if %1.==i:. goto ok
  10. if %1.==l:. goto ok
  11. if %1.==r:. goto ok
  12. echo This is a script for RCOM (which also comes with PsiWin)
  13. echo.
  14. echo Usage:
  15. echo       start RCOM and in RCOM type:
  16. echo       INSTALL I: (I: for Internal / L: for SSD-A / R: for SSD-B)
  17. echo.
  18. echo Note:
  19. echo       this will install the english files only! If you want
  20. echo       to install another language, refer to the documentation.
  21. echo.
  22. echo PsiWin users:
  23. echo               copy the files WITHOUT conversion to the
  24. echo               relevant directories. See the "installation"
  25. echo               section in the documentation as to where the
  26. echo               files should be copied.
  27. goto exit
  28.  
  29. :ok
  30. echo.
  31. echo Installing DPBank to %1
  32. echo -----------------------
  33. echo OK? (If not, press Ctrl-C now)
  34. echo.
  35. pause
  36. if not exist %1\app md %1\app
  37. if not exist %1\app\dpbank md %1\app\dpbank
  38. cd app
  39. copy dpbank.opa %1\app\
  40. cd dpbank
  41. copy langs01.opo %1\app\dpbank\
  42. copy help01.rsc  %1\app\dpbank\
  43. cd ..
  44.  
  45. echo.
  46. echo DPBank installed
  47. :exit
  48.