home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t195 / 1.img / NORTON.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-09-17  |  776 b   |  60 lines

  1. @echo off
  2. :: REM A menu within a batch file, errorlevel format
  3. set def=
  4. goto start
  5.  
  6. :menu
  7.   window, fWHI, tYEL, kred░, s1, c
  8.   title,Norton Utilities
  9.       option,Commander
  10.       option,Disk Doctor
  11.       option,Utilities
  12.       option,Text Editor,e
  13.       option,Disk Editor,i
  14.       option,Exit,x
  15. :end_menu
  16.  
  17. :start
  18. batmnu norton.bat %def%
  19. if errorlevel 6 goto EXIT
  20. if errorlevel 5 goto NDE
  21. if errorlevel 4 goto NE
  22. if errorlevel 3 goto NI
  23. if errorlevel 2 goto NDD
  24. if errorlevel 1 goto NC
  25. if errorlevel 0 goto EXIT
  26.  
  27. :NC
  28. set def=1
  29. nc
  30. goto start
  31.  
  32. :NDD
  33. set def=2
  34. c:
  35. cd \nu
  36. ndd
  37. goto start
  38.  
  39. :NI
  40. set def=3
  41. c:
  42. cd \nu
  43. Norton
  44. goto start
  45.  
  46. :NE
  47. set def=4
  48. nce
  49. goto start
  50.  
  51. :NDE
  52. set def=5
  53. c:
  54. cd \nu
  55. diskedit
  56. goto start
  57.  
  58. :EXIT
  59. set def=
  60.