home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 May
/
PCW596.iso
/
polskie
/
cadsoft
/
robstart
/
rc_rst.exe
/
RST.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-09-17
|
2KB
|
61 lines
@Echo off
REM *************************************************************************
REM RoboCAD Batch File Copyright (c) 1988 Robocom Ltd
REM *************************************************************************
REM Instalacja polskiej klawiatury i polskich liter
keybcad
cls
grafpol 999
egapl LA +
cls :Clear screen
if not exist rc_con.exe goto end :Test for system menu program
REM *************************************************************************
REM INSTALLATION AND SYSTEM MENU PROGRAM
REM Run Installation or System Menu program
REM RC_CON exit codes allow: Exit to DOS
REM Load an input device and run RoboCAD
REM Load no input device and run RoboCAD
REM Restart this batch file after installation
REM *************************************************************************
:system_menu
RC_CON
if errorlevel 255 goto veryend :Exit to DOS
if errorlevel 29 goto input_device :Load an input device
if errorlevel 20 goto cad :Run RoboCAD
RST :Restart if install
REM *************************************************************************
REM ROBOCAD
REM Load the extended character set
REM Run RoboCAD
REM RoboCAD exit codes allow: Exit to DOS
REM Return to the system menu
REM *************************************************************************
:input_device
RC_EXEC INP_DEV.BAT
:cad
echo '
echo Inicjowanie Systemu RoboSTARTER
echo Prosze czekac!
echo '
INIT
if errorlevel 255 goto veryend :Exit to DOS
goto system_menu :Return to menu
REM *************************************************************************
REM Message if installation being tried when current disk is not a:
REM *************************************************************************
:end
echo System RoboSTARTER jest nieprawidlowo zainstalowany!
echo Z dyskietki RoboSTARTER SYSTEM wpisz zlecenie RC
goto badend
REM *************************************************************************
REM Exit to DOS
REM *************************************************************************
:veryend
echo Dziekujemy za prace z systemem RoboSTARTER, CADsoft .
echo
echo Zaleca sie restart komputera (w celu zwolnienia z pamieci programów
echo rezydentnych).
:badend