home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
pcmag
/
vol9n05.arc
/
NEEDANSI.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-04-27
|
394b
|
14 lines
ECHO OFF
ANSIHERE S
IF ERRORLEVEL 1 GOTO GotANSI
REM ANSI is not loaded
ECHO This program requires the DOS device driver ANSI.SYS.
ECHO To install ANSI, place the following line
ECHO DEVICE=[d:][path]ANSI.SYS
ECHO in your CONFIG.SYS file and reboot.
GOTO END
:GotANSI
ECHO ANSI.SYS is loaded so the commands to execute
ECHO your program would go here.
:END