home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 32 / hot34.iso / ficheros / DAPLI / GESGARA.ZIP / GES-GA97.DAT / OPCION2.BAT < prev    next >
DOS Batch File  |  1997-12-13  |  512b  |  31 lines

  1. @echo off
  2. :: REM A menu within a batch file, errorlevel format
  3. set def=
  4. goto EMPEZAR
  5.  
  6. :menu
  7.   title,RESTAURAR DATOS
  8.       option,SI RESTAURO desde A:
  9.       option,NO QUIERO
  10.       option,SALIR
  11. :end_menu
  12.  
  13. :empezar
  14. batmnu OPCION2.bat %def%
  15. if errorlevel 3 goto SALIR
  16. if errorlevel 2 goto NO
  17. if errorlevel 1 goto SI
  18. if errorlevel 0 goto SALIR
  19.  
  20. :NO -----------------------
  21. goto empezar
  22.  
  23. :SI ----------------------
  24. REPONEFI.BAT
  25. goto empezar
  26.  
  27. :SALIR -----------------------
  28. set def=
  29. CLS
  30.  
  31.