Forked from chrisbrownie/Install-WindowsDriversFromFolder.ps1
Last active
April 8, 2021 08:11
-
-
Save andrew-azarov/48b45c4aa85fb0fd0ee75bee13c94c05 to your computer and use it in GitHub Desktop.
Installs Windows drivers from a folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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