home *** CD-ROM | disk | FTP | other *** search
/ Shareware Gold 1 / The_Golden_ROM_Series_-_Shareware_Gold_Volume_1_Number_11_-_SK_89-301_-_1989.iso / LIB018 / FINSTALL.BAT next >
DOS Batch File  |  1986-10-01  |  2KB  |  57 lines

  1. echo off
  2. cls
  3. echo PC-TYPE+ Installation for Fixed Disks
  4. echo ·
  5. echo Enter the Drive Letter of your Fixed disk.
  6. getrsp Press A,B,C,D,E,F or G: ^ABCDEFG
  7. if ERRORLEVEL 1 SET F=A
  8. if ERRORLEVEL 2 SET F=B
  9. if ERRORLEVEL 3 SET F=C
  10. if ERRORLEVEL 4 SET F=D
  11. if ERRORLEVEL 5 SET F=E
  12. if ERRORLEVEL 6 SET F=F
  13. if ERRORLEVEL 7 SET F=G
  14. echo ·
  15. echo Do you have 1 or 2 floppies?
  16. getrsp Press 1 or 2: ^12
  17. if ERRORLEVEL 2 goto multpl
  18. if ERRORLEVEL 1 goto single
  19. :multpl
  20. echo Place the diskette labelled HELP in drive B: and press a key when ready.
  21. pause
  22. cd b:\pct_help
  23. md %F%:\pct_help
  24. cd %F%:\pct_help
  25. copy b:*.* %F%:
  26. echo Place the diskette labelled DICT in drive B: and press a key when ready.
  27. pause
  28. cd b:\pct_dic
  29. md %F%:\pct_dic
  30. cd %F%:\pct_dic
  31. copy b:*.* %F%:
  32. goto exit
  33. :single
  34. md %F%:\pct_help
  35. cd %F%:\pct_help
  36. echo ·
  37. echo With a single floppy, you will have to swap this disk in and out twice.
  38. echo First, place the diskette labelled HELP in your floppy drive.
  39. copy b:\pct_help\*.* %F%:
  40. md %F%:\pct_dic
  41. cd %F%:\pct_dic
  42. echo ·
  43. echo Next, place the diskette labelled DICT in your floppy drive.
  44. copy b:\pct_dic\*.* %F%:
  45. :exit
  46. cd %F%:\
  47. copy pctype.exe %F%:
  48. echo - The PCTYPE.EXE file has been copied to the root directory of your
  49. echo       %F% disk.  You should move it to your designated utility directory
  50. echo       if you do not want it on your root directory.
  51. echo ·
  52. pause
  53. echo - The PATHS.LOC file contains information for setting default paths
  54. echo   to the HELP files and the PC-TYPE+ dictionary files.  Print the
  55. echo   file PATHS.LOC and then follow the direction to set your paths.
  56. set F=
  57.