Win32_USBControllerDevice class
The Win32_USBControllerDevice association WMI class relates a universal serial bus (USB) controller and the CIM_LogicalDevice instance connected to it.
The following syntax is simplified from Managed Object Format (MOF) code and includes all of the inherited properties. Properties are listed in alphabetic order, not MOF order.
Syntax
[Dynamic, Provider("CIMWin32"), UUID("{DE57D792-A032-11D2-90F0-0060081A46FD}"), AMENDMENT]
class Win32_USBControllerDevice : CIM_ControlledBy
{
uint32 NegotiatedDataWidth;
uint64 NegotiatedSpeed;
uint16 AccessState;
uint32 NumberOfHardResets;
uint32 NumberOfSoftResets;
CIM_USBController REF Antecedent;
CIM_LogicalDevice REF Dependent;
};
Members
The Win32_USBControllerDevice class has these types of members:
Properties
The Win32_USBControllerDevice class has these properties.
-
AccessState
-
-
Data type: uint16
-
Access type: Read-only
Indicates whether the controller is actively commanding or accessing the device. This information is necessary when a logical device can be commanded by, or accessed through, multiple controllers.
This property is inherited from CIM_ControlledBy.
-
-
Unknown (0)
-
Active (1)
-
Inactive (2)
Antecedent
-
Data type: CIM_USBController
-
Access type: Read-only
-
Qualifiers: key, Override ("Antecedent"), MappingStrings ("CIM|CIM_USBController")
A CIM_USBController representing the Universal Serial Bus (USB) controller associated with this device.
Dependent
-
Data type: CIM_LogicalDevice
-
Access type: Read-only
-
Qualifiers: key, Override ("Dependent"), MappingStrings ("CIM|CIM_LogicalDevice")
A CIM_LogicalDevice describing the logical device connected to the Universal Serial Bus (USB) controller.
NegotiatedDataWidth
-
Data type: uint32
-
Access type: Read-only
-
Qualifiers: Units ("bits")
When several bus or connection-data widths are possible, this property defines the one in use between the devices. Data width is specified in bits. If data width is not negotiated, or if this information is not available or important to device management, the property should be set to 0 (zero).
This property is inherited from CIM_DeviceConnection.
NegotiatedSpeed
-
Data type: uint64
-
Access type: Read-only
-
Qualifiers: Units ("bits per second")
When several bus or connection speeds are possible, this property defines the one being used between the devices. Speed is specified in bits-per-second. If connection or bus speeds are not negotiated, or if this information is not available or important to device management, the property should be set to 0 (zero).
For more information about using uint64 values in scripts, see Scripting in WMI.
This property is inherited from CIM_DeviceConnection.
NumberOfHardResets
-
Data type: uint32
-
Access type: Read-only
Number of hard resets issued by the controller. A hard reset returns the device to its initialization or boot-up state. All internal device state information and data are lost.
This property is inherited from CIM_ControlledBy.
NumberOfSoftResets
-
Data type: uint32
-
Access type: Read-only
Number of soft resets issued by the controller. A soft reset does not completely clear current device state and data. Exact semantics are dependent on the device and on the protocols and mechanisms used to communicate to it.
This property is inherited from CIM_ControlledBy.
Remarks
The Win32_USBControllerDevice class is derived from CIM_ControlledBy.
For a discussion on using, see the Displaying USB Devices using WMI blog article. For a discussion of using association classes, see the Get-USB – Using WMI Association Classes in PowerShell article.
Examples
The following PowerShell example retrieves the dependent logical device and displays the relevant information.
gwmi Win32_USBControllerDevice |%{[wmi]($_.Dependent)} | Sort Manufacturer,Description,DeviceID | Ft -GroupBy Manufacturer Description,Service,DeviceID
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows Vista |
Minimum supported server |
Windows Server 2008 |
Namespace |
Root\CIMV2 |
MOF |
|
DLL |
|
See also