所有的驱动存储在 DriverStore,目录在
%SYSTEMDRIVE%\Windows\System32\DriverStore
可以用命令行 pnputil 添加删除驱动。
添加一个驱动:
Pnputil.exe -a c:\LOCATION_OF_DRIVER\DRIVER_NAME.inf
从目录下添加所有驱动
Pnputil.exe -a C:\LOCATION_OF_DRIVER\*.inf
删除驱动
Pnputil.exe -d DRIVER_NAME_inf
http://msdn.microsoft.com/en-us/library/windows/hardware/ff550428(v=vs.85).aspx.