# Manage Drivers with pnputil

#### Install inf-Drivers

1. Extract your Downloaded Driver
2. Open cmd.exe as Administrator and navigate (cd) into your extracted Directory
3. Enter `pnputil -i -a yourdriver.inf` and press Enter

<figure class="image" id="bkmrk-">![](https://wiki.oliver-karger.de/windows/inf_driver_installation_screenshot.png)</figure>#### List Drivers and Search

1. Open powershell.exe
2. Run `Get-WindowsDriver | Format-Table`

<figure class="image" id="bkmrk--1">![](https://wiki.oliver-karger.de/windows/pnputil/list_drivers.png)</figure>#### Search

You can filter by Column Values in this Table

Example: `Get-WindowsDriver -Online -All | Format-Table | Where-Object { $_.column -match “Value” }`