UtilDismGetDriverInfo Method
Get infomation about the drivers listed in the .inf file of the specified DismDriverPackage object.
Namespace: DevCase.ThirdParty.DismAssembly: DevCase.net48.ThirdParty.Dism (in DevCase.net48.ThirdParty.Dism.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static DismDriverCollection GetDriverInfo(
DismDriverPackage driverPackage
)
Public Shared Function GetDriverInfo (
driverPackage As DismDriverPackage
) As DismDriverCollection
Dim driverPackage As DismDriverPackage
Dim returnValue As DismDriverCollection
returnValue = UtilDism.GetDriverInfo(driverPackage)
public:
static DismDriverCollection^ GetDriverInfo(
DismDriverPackage^ driverPackage
)
static member GetDriverInfo :
driverPackage : DismDriverPackage -> DismDriverCollection
No code example is currently available or this language may not be supported.
- driverPackage DismDriverPackage
-
The source DismDriverPackage object.
DismDriverCollection
A
DismDriverCollection collection containing the information about each driver.
Note: Some functionalities of this assembly may require to install one or all of the listed NuGet packages:
Microsoft.Dism by jeffkl
This is a code example.
No code example is currently available or this language may not be supported.
' Get the first third-party driver package.
Dim firstThirdPartyDriver As DismDriverPackage = DismUtil.GetDriverPackages(GetDriverPackagesFlags.NotInbox).First()
Debug.WriteLine(DismDriverPackageExtensions.GetPackageInfoString(firstThirdPartyDriver, singleLine:=False))
' Get the .inf drivers.
Dim driverInfoCollection As DismDriverCollection = DismUtil.GetDriverInfo(firstThirdPartyDriver)
' Iterate through the .inf drivers.
For Each driverInfo As DismDriver In driverInfoCollection
Debug.WriteLine(DismDriverExtensions.GetDriverInfoString(driverInfo, singleLine:=False))
Next driverInfo
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.