ECHO OFF : IMPRINT.BAT is an aid to printing documentation files distributed : with the INTEGRITY MASTER (IM) install files. IF "%1"=="" goto help IF %1==? goto help IF NOT EXIST %1 GOTO IMPRINTtxt CLS ECHO ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ECHO º ECHO º File "%1" will be printed (copied to PRN) ECHO º ECHO º You may also wish to read this file on your screen; if so, ECHO º just enter the command: ECHO º ECHO º IMVIEW %1 (and hit ENTER) ECHO º ECHO ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ PAUSE Hit any key to start printing %1 CLS COPY %1 PRN GOTO END :IMPRINTtxt IF NOT EXIST %1.TXT GOTO IMPRINTdoc CLS ECHO ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ECHO º ECHO º File "%1.TXT" will be printed (copied to PRN) ECHO º ECHO º You may also wish to read this file on your screen; if so, ECHO º just enter the command: ECHO º ECHO º IMVIEW %1 (and hit ENTER) ECHO º ECHO ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ PAUSE Hit any key to start printing %1.TXT CLS COPY %1.TXT PRN GOTO END :IMPRINTdoc IF NOT EXIST %1.DOC GOTO NotFound CLS ECHO ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ECHO º ECHO º File "%1.DOC" will be printed (copied to PRN) ECHO º ECHO º You may also wish to read this file on your screen; if so, ECHO º just enter the command: ECHO º ECHO º IMVIEW %1 (and hit ENTER) ECHO º ECHO ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ PAUSE Hit any key to start printing %1.DOC CLS COPY %1.DOC PRN GOTO END :NotFound ECHO ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ECHO º File %1, %1.TXT or %1.DOC were not found. ECHO º ECHO º Please locate the file you were trying to print. If that file is not ECHO º in the current directory then enter: "IMPRINT \some\directory" where ECHO º "\some\directory" is the location of that file. ECHO ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ECHO . :Help ECHO ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ» ECHO º Syntax: IMPRINT filename º ECHO º º ECHO º If filename is not found, IMPRINT will look for filename.TXT º ECHO º If filename.TXT is not found, IMPRINT will look for filename.DOC º ECHO º º ECHO º To print the install and routine use checklist for Integrity Master, º ECHO º enter the command: IMPRINT IMPROC º ECHO º º ECHO ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĶ ECHO º For example: º ECHO º If you wish to print the file "QUESTION.TXT" you can enter the commandº ECHO º "IMPRINT QUESTION" and the file "QUESTION.TXT" will be displayed, as º ECHO º long as a file named "QUESTION" (with no extension) does not exist º ECHO º in the current directory. º ECHO ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ :END