load

Syntax

load[-nc]file[file...]

Description

Loads a UEFI driver into memory.

Options

-nc

Loads the driver, but does not connect the driver.

file

Specifies the image file containing the UEFI driver to load. Wildcards are permitted.

Usage

You can use this command to load multiple files at one time and can use wildcards when specifying files. If -nc is not specified, the system attempts to connect the driver to a proper device. It can also cause previously loaded drivers to connect to corresponding devices.

Examples

To load the driver contained in the Isabus.efi file:

FS0:\> load Isabus.efi
      

To load the drivers contained in the Isabus.efi and IsaSerial.efi files:

FS0:\> load Isabus.efi IsaSerial.efi
      

To load drivers contained in multiple files with Isa in the file names:

FS0:\> load Isa*.efi
      

To load the driver contained in the Isabus.efi file without connecting:

FS0:\> load -nc Isabus.efi