ECHO OFF REM clear the screen CLS REM display the information screen file TYPE GETDATA.SCR REM wait for you to respond PAUSE REM clear the screen, again CLS REM send the information contained in the autoexec.bat to the printer REM *************** change the setting on the next line if it is incorrect. COPY C:\AUTOEXEC.BAT LPT1 REM send the information contained in the config.sys to the printer REM *************** change the setting on the next line if it is incorrect. COPY C:\CONFIG.SYS LPT1 REM send the information from the "PATH" setting to the printer PATH >LPT1 REM send the information from the CHKDSK.COM utility to the printer REM *************** chkdsk.com must be located in the "path" for this to work. CHKDSK >LPT1 REM clear the screen, one last time CLS REM all done!