disconnect

Syntax

disconnect devicehandle [driverhandle][childhandle]][-r]

disconnect [-r] [-nc]

Description

Disconnects one or more drivers from the specified devices.

Options

devicehandle

Specifies a device handle in hexadecimal format.

driverhandle

Specifies a driver handle in hexadecimal format. If not specified, the device specified by devicehandle is disconnected.

childhandle

Specifies a child handle of a device in hexadecimal format. If not specified, all child handles of the device specified by devicehandle are disconnected.

-r

Disconnects all drivers from all devices, and then reconnects consoles.

-nc

Does not reconnect console devices.

Usage

This command does not support output redirection.

Examples

To disconnect all drivers from all devices , and then reconnect console devices:

Shell> disconnect -r
      To disconnect all drivers from all devices, including console devices: 
		
Shell> disconnect -r -nc
      

To disconnect all drivers from device 0x28:

Shell> disconnect 28
      

To disconnect driver 0x17 from device 0x28:

 Shell> disconnect 28 17
      

To disconnect driver 0x17 from controlling the child 0x32 of device 0x28:

Shell> disconnect 28 17 32