Get-MSDSMSupportedHW

Lists hardware identifiers (IDs) in the Microsoft Device Specific Module (MSDSM) supported hardware list.

Syntax

Get-MSDSMSupportedHW
   [[-VendorId] <String[]>]
   [[-ProductId] <String[]>]
   [-AsJob]
   [-CimSession <CimSession[]>]
   [-ThrottleLimit <Int32>]

Description

The Get-MSDSMSupportedHW cmdlet lists hardware identifiers (IDs) in the Microsoft Device Specific Module (MSDSM) supported hardware list.

Note: When using the VendorID and the ProductID parameters it is not required to pad the parameter values with trailing spaces like was required with MPCLAIM.EXE.

Examples

EXAMPLE 1

PS C:\>Get-MSDSMSupportedHW

This example gets all of the hardware IDs from the MSDSM supported hardware list.

EXAMPLE 2

PS C:\>Get-MSDSMSupportedHW -VendorId "VendorX"

This example gets all of the hardware IDs for which the vendor ID is VendorX from the MSDSM supported hardware list.

EXAMPLE 3

PS C:\>Get-MSDSMSupportedHW -ProductId "ProductY"

This example gets all of the hardware IDs for which the product ID is ProductY from the MSDSM supported hardware list.

EXAMPLE 4

PS C:\>Get-MSDSMSupportedHW -VendorId "VendorX" -ProductId "ProductY"

This example gets all of the hardware IDs for which the vendor ID is VendorX and the product ID is ProductY from the MSDSM supported hardware list.

Parameters

-AsJob

ps_cimcommon_asjob

Type:SwitchParameter
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-CimSession

Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a New-CimSessionhttp://go.microsoft.com/fwlink/p/?LinkId=227967 or Get-CimSessionhttp://go.microsoft.com/fwlink/p/?LinkId=227966 cmdlet. The default is the current session on the local computer.

Type:CimSession[]
Aliases:Session
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-ProductId

Returns hardware IDs that contain the specified product ID.

Type:String[]
Position:2
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-ThrottleLimit

Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0 is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer.

Type:Int32
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-VendorId

Return hardware IDs that contain the specified vendor ID.

Type:String[]
Position:1
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

Inputs

None

Outputs

None