home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 010 / batmnu24.zip / NORTONH.BAT < prev    next >
DOS Batch File  |  1994-10-11  |  2KB  |  89 lines

  1. @echo off
  2. :: REM variation of NORTONP.BAT using automatic Extended Option Help.
  3. set def=
  4. goto start
  5.  
  6. :menu
  7.   window, fWHI, tYEL, kred░, s1, c5, auto_help, ~
  8.     h_format, bblu, t1, d0
  9.     header,Norton Utilities
  10.       option,Commander,,,,nc
  11.         help,:NC_Hlp
  12.       option,Disk Doctor,,c:,\nu,ndd
  13.         help,:NDD_Hlp
  14.       option,Utilities,,c:,\nu,NORTON
  15.         help,:Norton_Hlp
  16.       option,Text Editor,e,,,nce
  17.         help,:NE_Hlp
  18.       option,Disk Editor,i,c:,\nu,diskedit
  19.         help,:DE_Hlp
  20.       option,Exit,x
  21.         help,:Exit_Hlp
  22.     f_format, bblu
  23.     footer,Menu Example using Automatic Extended Help
  24. :End_menu
  25.  
  26. :NC_Hlp
  27.   window, fBLU, bwhi, tred, oblu, c38
  28.     File and directory management
  29.     using 2 side-by-side displays
  30.     that can be sorted in a variety
  31.     of ways. All DOS file functions
  32.     are just a keystroke away.
  33. :End_NC_Hlp
  34.  
  35. :NDD_Hlp
  36.   window, fBLU, bwhi, tred, oblu, c37
  37.     Automatically detect and correct
  38.     physical and logical disk errors.
  39.     Works on floppies and hard disks.
  40. :End_NDD_Hlp
  41.  
  42. :Norton_Hlp
  43.   window, fBLU, bwhi, tred, oblu, c39
  44.     A collection of utilities for
  45.     rescuing damaged disks and 
  46.     files, providing safe file 
  47.     deleting and recovery, batch
  48.     file enhancements and more.
  49. :End_Norton_Hlp
  50.  
  51. :NE_Hlp
  52.   window, fBLU, bwhi, tred, oblu, c36
  53.     Edit ASCII files. Word processing
  54.     features like search and replace,
  55.     paragraph and page formatting.
  56. :End_NE_Hlp
  57.  
  58. :DE_Hlp
  59.   window, fBLU, bwhi, tred, oblu, c35
  60.     View and edit the entire contents
  61.     of a diskette or hard disk,
  62.     including disks that DOS cannot
  63.     recognize or access. Repair or
  64.     rescue damaged files or their data.
  65. :End_DE_Hlp
  66.  
  67. :Exit_Hlp
  68.   window, fBLU, bwhi, tred, oblu, c41
  69.     If you can't guess what
  70.     this does, hang it up!
  71. :End_Exit_Hlp
  72.  
  73. :start
  74. batmnu nortonh.bat %errlev%
  75. :: REM ERRLEV value sets default
  76.  
  77. if not %ERRLEV%!==! goto start  
  78. :: REM if ERRLEV is set, redisplay menu
  79.  
  80. if errorlevel 6 goto EXIT           
  81. :: REM Exit selected
  82.  
  83. if not errorlevel 1 goto EXIT       
  84. :: REM ESC pressed
  85.  
  86. goto start
  87.  
  88. :Exit
  89.