home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0020 - 0029 / ibm0020-0029 / ibm0028.tar / ibm0028 / BLUEMAX.ZIP / BLUEMAX.SEZ / STRIPMGR.DOC < prev    next >
Encoding:
Text File  |  1990-10-25  |  2.4 KB  |  78 lines

  1.                STRIPMANAGER
  2.  
  3. STRIPMGR scans CONFIG.SYS, AUTOEXEC.BAT, and any batch files called by
  4. AUTOEXEC, and optionally removes 386 memory managers and their related
  5. programs.  STRIPMGR returns the number of memory managers & programs
  6. found or removed (depending on the /S switch), or 255 on an error.
  7.  
  8. The syntax is
  9.  
  10.     stripmgr [d:] [/H/S/T] [~386max.sys] [striplist]
  11.  
  12. The switches are
  13.  
  14.     /H    Display the help screen.
  15.  
  16.     /S    Strip the memory managers.  STRIPMGR will prompt the
  17.         user before removing each program, unless the /T(erse)
  18.         switch is specified (see below).  If the /S switch
  19.         is not specified, STRIPMGR will display the files found
  20.         but take no action.
  21.  
  22.     /T    Terse mode - turn off the display of STRIPMGR's
  23.         processing, and if /S is specified, remove the programs
  24.         without prompting the user.
  25.  
  26. The optional arguments are
  27.  
  28.     d:        Startup drive (where CONFIG.SYS & AUTOEXEC.BAT
  29.             are located).
  30.  
  31.     ~386max.sys    Don't remove references to 386MAX or any of its
  32.             associated programs.  (Note that the name could
  33.             be changed, i.e. ~QEMM.SYS to not remove any
  34.             references to QEMM.)
  35.  
  36.     striplist    The name of the strip list file.  If not
  37.             specified, it defaults to STRIPMGR.LST in the same
  38.             directory as STRIPMGR.
  39.  
  40. The format of the strip list is
  41.  
  42. : QEMM 386 from Quarterdeck
  43. qemm.sys
  44.     ~loadhi
  45.     !noega
  46.  
  47. : 386MAX from Qualitas
  48. 386max.sys
  49.     ~386load *prog=
  50.  
  51.  
  52. Lines beginning with a : or ; are comments and are ignored, as are blank
  53. lines.    A program name in the left column is the memory manager name; it
  54. is followed by the names of its associated programs with leading tabs.
  55. If STRIPMGR matches the memory manager name with a name in CONFIG.SYS,
  56. it saves the associated programs to a "delete list" and scans CONFIG.SYS
  57. and AUTOEXEC (and related batch files) for a match.  Otherwise, the
  58. associated programs are ignored.
  59.  
  60.  
  61. The associated programs have required leading characters:
  62.  
  63.     !    Remove the entire line where this program name occurs
  64.     ~    Remove the program name and any switches (/ or -) which
  65.         follow, but keep the remainder of the line.
  66.  
  67. If the associated program has a ~, it can also take optional arguments.
  68.  
  69.     ~386load GETSIZE RAM NOVID
  70.  
  71. will remove any matching arguments (GETSIZE, RAM, NOVID) from the line.
  72. If the argument is preceded by an asterisk (*), it is assumed to be the
  73. last valid argument on the line, and everything is removed up to and
  74. including that argument:
  75.  
  76.        ~386load *prog=
  77.  
  78.