home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / victor2.zip / VICCOPY.BAT < prev    next >
DOS Batch File  |  1991-07-03  |  2KB  |  71 lines

  1. echo off
  2. cls
  3. echo  
  4. echo Using the VICCOPY utility program...
  5. echo  
  6. echo You typed:  VICCOPY %1 %2
  7. if %1A==A goto err1
  8. if %2A==A goto all
  9. if %2==F goto split
  10. if %2==f goto split
  11. goto err1
  12. :split
  13. echo  
  14. echo Insert your first blank formatted target diskette in the %1 drive and
  15. pause
  16. viczip %1 victor&l.dta
  17. echo The above file should now be present on drive %1
  18. echo Please confirm by reviewing this directory:
  19. dir %1
  20. pause
  21. echo Remove the diskette from drive %1 and 
  22. echo label it VICTOR LOW-ALTITUDE DATA
  23. echo          ALWAYS USE IN DRIVE B:
  24. echo Insert a second blank formatted target diskette in the %1 drive and
  25. pause
  26. viczip %1 victor.* victor&v.dta victor&i.dta victor&o.dta victor&h.dta
  27. echo     Copying: %1VICORDER.DOC
  28. copy vicorder.doc %1
  29. echo LODRIV=B: >>%1VICTOR.DEF
  30. echo The above files should now be present on drive %1
  31. echo Please confirm by reviewing this directory:
  32. dir %1 /w
  33. pause
  34. echo Remove the diskette from drive %1 and
  35. echo label it VICTOR PROGRAM AND DATA
  36. echo 
  37. echo  
  38. echo VICTOR will expect to find its low-altitude data in DRIVE B:
  39. echo You can change this by editing the file VICTOR.DEF, found 
  40. echo on your VICTOR PROGRAM AND DATA diskette, with a text editor.
  41. goto endd
  42. :all
  43. echo  
  44. viczip %1
  45. echo     Copying: %1\VICORDER.DOC
  46. copy vicorder.doc %1
  47. :ok
  48. echo  
  49. echo The above files should now be present on drive %1
  50. echo Please confirm by reviewing this directory:
  51. dir %1 /w
  52. goto endd
  53. :err1
  54. echo 
  55. echo NO ACTION HAS BEEN TAKEN
  56. echo  
  57. echo If your target is a hard disk subdirectory:
  58. echo      VICCOPY  X:\PATHNAME
  59. echo  
  60. echo If your target is a single floppy diskette (720K or larger):
  61. echo      VICCOPY  X:
  62. echo  
  63. echo If your target is two floppy diskettes:
  64. echo      VICCOPY  X:  F
  65. echo  
  66. echo (where X is your target drive letter, or X:\PATHNAME is the 
  67. echo  full DOS pathname of your hard drive subdirectory)
  68. echo  
  69. :endd
  70.  
  71.