I am building servers that have loads of devices that windows can't find drivers for. I have the USB with all the drivers plugged in. I have to click each device and update it one by one manually. I need to know how to do them all at once. The only instructions I've found on the internet are for windows 2008 and they don't seem to apply because the referenced DevicePath registry key does not exist in windows 2012. Thanks in advance.
Physical device management through a command line is something that Windows is still lagging behind in. I'm confident that we will eventually see official device management Powershell cmdlets, but not today. There is an addon Device Management Powershell module but the device driver installation portion of it is marked as experimental, so I'd be very apprehensive about using it in production.
So today, I'd stick with using
pnputil.exe
for installing drivers from the command line. When used in a script, you can produce repeatable, predictable results.