home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo This program makes a working copy of Org Plus.
- echo
- echo "Diskette 1 - Chart" should be in the A drive.
- echo
- echo One blank, formatted diskette should be in the
- echo B drive. (You will need 2 more blank diskettes.)
- echo
- echo Press Ctrl-Break to cancel.
- echo
- pause
- :lp1
- if not exist a:org.exe goto er1
- cls
- echo Copying files from A: to B:
- echo
- copy a:*.b?? b:
- copy a:*.exe b:
- if not exist b:chart.exe goto er2
- cls
- echo "Diskette 1 - Chart" has been copied. Please
- echo remove both diskettes.
- echo
- echo Then,
- echo
- echo Place "Diskette 2 - Draw" in the A drive.
- echo
- echo Place a second blank, formatted diskette in
- echo the B drive.
- echo
- pause
- :lp2
- if not exist a:draw.exe goto er3
- cls
- echo Copying files from A: to B:
- echo
- copy a:*.b?? b:
- copy a:*.org b:
- copy a:*.com b:
- copy a:draw.exe b:
- if not exist b:draw.exe goto er2
- b:
- del pr*.bin
- printers
- if not exist b:printer1.bin goto er2
- a:
- cls
- echo "Diskette 2 - Draw" has been copied.
- echo
- echo Remove the copy from drive B. LEAVE THE
- echo ORIGINAL DISKETTE 2 IN DRIVE A.
- echo
- echo Then,
- echo
- echo Label a third blank, formatted diskette "Diskette 3 - Fonts"
- echo and place it in drive B.
- echo
- pause
- cls
- echo Copying files from A: to B:
- echo
- copy a:*.com b:
- copy a:*.bin b:
- copy a:fonts.exe b:
- if not exist b:fonts.exe goto er2
- cls
- echo Unpacking LaserJet fonts.
- echo
- b:
- del *.#&?
- del pr*.bin
- fonts
- if not exist ro100r12.#&p goto er2
- del fonts.*
- printers
- del *.com
- a:
- cls
- echo The copying process is now complete.
- goto end
- :er1
- cls
- echo The wrong disk appears to be in drive A. Place "Diskette - 1" in drive A.
- echo Press Ctrl-Break to cancel.
- pause
- goto lp1
- :er2
- a:
- echo
- pause
- cls
- echo Org Plus is NOT installed. There has been an error in copying.
- goto end
- :er3
- cls
- echo The wrong disk appears to be in drive A. Place "Diskette - 2" in drive A.
- echo Press Ctrl-Break to cancel.
- echo
- pause
- goto lp2
- :end echo
-