Echo off REM -- Install batch file for the Tiny Tafel Editor v2.00 CLS IF %1!==! GOTO NODRIVE ECHO This is the INSTALL.BAT file for the Tiny Tafel Editor v2.00. This routine ECHO will create a subdirectory on drive %1 called TTEDIT and will copy all of ECHO the editor's files into it. If you do -not- wish to do this, press ECHO CTRL-BREAK now and answer Yes to terminate this routine. Otherwise, press ECHO any other key to continue. ECHO ÿÿ ECHO ÿÿ PAUSE MKDIR %1\TTEDIT COPY *.* %1\TTEDIT CLS ECHO The Tiny Tafel Editor has been copied onto your hard disk. You may start ECHO the editor by typing the following three lines, pressing ENTER after each ECHO one: (write them down!) ECHO ÿÿ ECHO %1 ECHO CD\TTEDIT ECHO TTEDIT ECHO ÿÿ GOTO END :NODRIVE ECHO You must specify the letter of the hard disk that you want the Tiny Tafel ECHO Editor copied onto. Example: INSTALL C: ECHO ÿÿ :END