@echo off if '%1'=='' goto INSTR C: cd\ md ENIGMAX cd ENIGMAX 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 ENIGMACROSS from the A floppy drive. goto END :LOOP if exist C:\ENIGMAX\EMX2LPT1.EXE del C:\ENIGMAX\EMX2LPT1.EXE cls echo PLEASE SELECT YOUR PRINTER (1-4) echo -------------------------------- echo 1 - Epson 9-Pin Dot Matrix echo 2 - Epson 24-Pin Dot Matrix echo 3 - Hewlett Packard LaserJet echo 4 - PostScript getptr if errorlevel 52 goto POST if errorlevel 51 goto HPLJ if errorlevel 50 goto EP24 if errorlevel 49 goto EP09 goto LOOP :POST ren C:\ENIGMAX\EMX2PS.EXE EMX2LPT1.EXE goto DONE :HPLJ ren C:\ENIGMAX\EMX2HPLJ.EXE EMX2LPT1.EXE goto DONE :EP24 ren C:\ENIGMAX\EMX2EP24.EXE EMX2LPT1.EXE goto DONE :EP09 ren C:\ENIGMAX\EMX2EP9.EXE EMX2LPT1.EXE :DONE del C:\ENIGMAX\GETPTR.COM del C:\ENIGMAX\INSTALL.BAT cls echo ************************************* echo ENIGMACROSS INSTALLATION IS COMPLETE! echo TYPE ENIGMAX [ENTER] TO RUN. echo ************************************* :END