Uses part of the computer's RAM to simulate a hard disk drive.

Syntax:
device=[path]ramdrive.sys [DiskSize [SectorSize [NumEntries]]] [/E | /A]
Notes:
Example

To create a RAM Drive of 32 Mb (the maximum possible with RamDrive.sys), include the following lines in config.sys:
device=c:\windows\himem.sys
	;Enables access to extended memory
device=c:\windows\emm386.exe noems
	;Provides access to upper memory blocks (UMBs)
dos=high,umb
	;Lets Dos load into high memory and manage the UMBs
devicehigh=c:\windows\ramdrive.sys 32767 /E
	;Creates a 32 Mb RAM Drive in extended memory.