Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andrew-azarov/48b45c4aa85fb0fd0ee75bee13c94c05 to your computer and use it in GitHub Desktop.
Save andrew-azarov/48b45c4aa85fb0fd0ee75bee13c94c05 to your computer and use it in GitHub Desktop.
Installs Windows drivers from a folder
Get-ChildItem "E:\*\winver\amd64\" -Recurse -Filter "*.inf" |
ForEach-Object { PNPUtil.exe -i -a $_.FullName }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment