home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if '%1'=='' goto INSTR
- if '%1'=='H' goto LOOP
- C:
- cd\
- if exist C:\XDOWN\*.* goto OKDIR
- md XDOWN
- :OKDIR
- cd XDOWN
- if '%1'=='A' goto ADRIVE
- copy B:\*.*
- goto LOOP
- :ADRIVE
- copy A:\*.*
- goto LOOP
- :INSTR
- echo You must type INSTALL followed by a space
- echo followed by the letter of the drive you are
- echo installing from. For example, the command:
- echo INSTALL A
- echo installs CROSSDOWN from the A floppy drive.
- echo.
- echo INSTALL H
- echo installs CROSSDOWN already downloaded to a
- echo hard drive or transferred off of a CD-ROM.
- goto END
- :LOOP
- if exist XWD2LPT1.EXE del XWD2LPT1.EXE
- cls
- echo PLEASE SELECT YOUR PRINTER (1-5)
- echo --------------------------------
- echo 1 - Epson 9-Pin Dot Matrix
- echo 2 - Epson 24-Pin Dot Matrix
- echo 3 - Hewlett Packard LaserJet
- echo 4 - Hewlett Packard DeskJet
- echo 5 - PostScript
- getans
- if errorlevel 53 goto POST
- if errorlevel 52 goto DJ5C
- if errorlevel 51 goto HPLJ
- if errorlevel 50 goto EP24
- if errorlevel 49 goto EP09
- goto LOOP
- :POST
- copy XWD2PS.EXE XWD2LPT1.EXE
- goto DONE
- :DJ5C
- copy XWD2DJ5.EXE XWD2LPT1.EXE
- goto DONE
- :HPLJ
- copy XWD2HPL.EXE XWD2LPT1.EXE
- goto DONE
- :EP24
- copy XWD2EP24.EXE XWD2LPT1.EXE
- goto DONE
- :EP09
- copy XWD2EP9.EXE XWD2LPT1.EXE
- :DONE
- cls
- echo ***********************************
- echo CROSSDOWN INSTALLATION IS COMPLETE!
- echo TYPE XDOWN28 [ENTER] TO RUN
- echo ***********************************
- :END
-