home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / windows / edos / edevlod.txt < prev    next >
Text File  |  1993-11-27  |  2KB  |  53 lines

  1. EDevLod
  2.  
  3. Purpose:    Installs MSDOS real mode device drivers from the DOS
  4.         Command line(in a DOS session in Windows). Drivers so
  5.         loaded are not installed before Windows and are not in
  6.         every virtual machine(DOS session or in the Windows 
  7.         System VM). This means that you can optimize the use of
  8.         memory by device drivers that are not needed by all
  9.         virtual machines.
  10.  
  11. Format:        [LH] EDEVLOD [d:][path]filename [driver_parameters]
  12.  
  13.         For example:
  14.         LH EDEVLOD C:\DOS\RAMDRIVE.SYS 256
  15.  
  16.         will load the ramdrive in high memory & allocate 256k
  17.  
  18.  
  19.  
  20. Remarks:    EDevLod can only be run from the DOS prompt in a DOS
  21.         session of Windows. The utility requires about 2K of
  22.         memory space and adds about 380 bytes to the size of
  23.         any driver that it loads.
  24.  
  25.         EDevLod can be run in WINSTART.BAT, which will cause
  26.         device drivers to be loaded in the SYSTEM Virtual
  27.         machine(VM), also known as the Windows VM. Which means
  28.         that if you want a driver to be visible only to Windows
  29.         apps it should be loaded by this method. It is ok
  30.         to load drivers in winstart and then load them again
  31.         in a DOS session.
  32.         If you don't know about winstart.bat, you can make one
  33.         with any plain text editor. It is an ORDINARY batch file
  34.         but is automatically run whenever Windows starts. 
  35.         Commands in it only effect the Windows Virtual Machine(VM).
  36.         (In Windows 3.1 ALL Windows apps run in the SYSTEM VM).
  37.  
  38.         In order to use the LoadHigh(LH) command in Windows
  39.         LocalLoadHigh=TRUE, must be set in system.ini in the
  40.         [386Enh] section. If not true, then LH will simply load
  41.         the driver in low memory and no warning will be issued.
  42.  
  43.  
  44. Warnings:    No attempt should be made to use utilities like
  45.         MARK/RELEASE or PC Magazines (INSTALL/REMOVE) to
  46.         unload drivers loaded with EDevLod.
  47.  
  48.  
  49. Uninstall:    The correct method for removing a driver loaded with
  50.         EDevLod is to close the DOS session that it was loaded
  51.         in. In effect: throw the session away and you remove the
  52.         driver.
  53.