home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hot Shareware 35
/
hot35.iso
/
ficheros
/
DAPLI
/
GESCAJA.ZIP
/
GES-CAJ.DAT
/
OPCION2.BAT
< prev
next >
Wrap
DOS Batch File
|
1998-07-07
|
512b
|
31 lines
@echo off
:: REM A menu within a batch file, errorlevel format
set def=
goto EMPEZAR
:menu
title,RESTAURAR DATOS
option,SI RESTAURO desde A:
option,NO QUIERO
option,SALIR
:end_menu
:empezar
batmnu OPCION2.bat %def%
if errorlevel 3 goto SALIR
if errorlevel 2 goto NO
if errorlevel 1 goto SI
if errorlevel 0 goto SALIR
:NO -----------------------
goto empezar
:SI ----------------------
REPONEFI.BAT
goto empezar
:SALIR -----------------------
set def=
CLS