disconnect

Syntax

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

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.

Usage

This command does not support output redirection.

Examples

To disconnect all drivers from all devices:

Shell> disconnect -r
      

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