Get-SCDriverPackage

Gets a driver package stored in a VMM library share.

Description

The Get-SCDriverPackage cmdlet gets one or more driver packages stored in a System Center Virtual Machine Manager (VMM) library share.

For more information about Get-SCDriverPackage, type: "Get-Help Get-SCDriverPackage -online".

Parameters

All

Required? false
Accept Pipeline Input? false
Position? named
Retrieves a full list of all subordinate objects independent of the parent object. For example, the command Get-SCVirtualDiskDrive -All retrieves all virtual disk drive objects regardless of the virtual machine object or template object that each virtual disk drive object is associated with.

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

ID

Required? false
Accept Pipeline Input? false
Position? named
Specifies the numerical identifier (as a globally unique identifier, or GUID) for a specific object.

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

PnPID

Required? false
Accept Pipeline Input? false
Position? 0
Specifies the plug and play (PnP) ID that the driver package supports. You can use this parameter to query for driver packages with matching PnP ID values.

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

Tag

Required? false
Accept Pipeline Input? false
Position? 0
Specifies a word or phrase to associate with an object so that you can search for all objects with the specified set of tags. You can search for a subset of tags, or you can search for the full set of tags.

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

Examples

1: Get all driver packages stored in the VMM library.
PS C:\> Get-SCDriverPackage
This command gets all driver packages stored in the VMM library and displays information about each driver package to the user.
2: Get a driver package by its Plug and Play ID.
PS C:\> Get-SCDriverPackage -PnPID "ROOT\VMBUS"
This command gets the driver package that has a Plug and Play ID (PnPID) of "ROOT\VMBUS".
3: Get all driver packages with a specified tag value.
PS C:\> Get-SCDriverPackage -Tag "Production"
This command gets all driver packages that have a tag value of Production.

See Also