PowerShell Logo Small

Get-WindowsDriver



This is the built-in help made by Microsoft for the command 'Get-WindowsDriver', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Displays information about drivers in a Windows image.

SYNTAX


Get-WindowsDriver [-All] [-Driver <String>] [-LogLevel <LogLevel>] [-LogPath <String>] [-ScratchDirectory <String>] [-SystemDrive <String>] [-WindowsDirectory <String>]
-Online [<CommonParameters>]
Get-WindowsDriver [-All] [-Driver <String>] [-LogLevel <LogLevel>] [-LogPath <String>] [-ScratchDirectory <String>] [-SystemDrive <String>] [-WindowsDirectory <String>]
-Path <String> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


Displays information about driver packages in the online or offline Windows image. You can display basic information about all of the drivers in an image, or display
detailed information about a specific driver.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=289355
Add-WindowsDriver
Remove-WindowsDriver

REMARKS

<

Examples


Example 1

PS C:\>Get-WindowsDriver –Online -All



This command gets all of the drivers in an online Windows image.






Example 2

PS C:\>Get-WindowsDriver –Path c:\offline



This command gets the 3rd party drivers in a mounted Windows image.






Example 3

PS C:\>Get-WindowsDriver –Path c:\offline –Driver OEM1.inf



This command gets detailed information about the OEM1.inf driver in a mounted Windows image.






Example 4

PS C:\>Get-WindowsDriver –Path c:\offline –Driver c:\drivers\Usb\Usb.inf



This command gets detailed information about the Usb.inf driver in a mounted Windows image.