| 10 | |
| 11 | * http://msdn.microsoft.com/en-us/library/windows/hardware/ff544780%28v=vs.85%29.aspx |
| 12 | * http://www.osronline.com/ddkx/ddtools/devcon_499v.htm |
| 13 | * http://www.osronline.com/ddkx/ddtools/devcon_86er.htm |
| 14 | * http://makemsi-manual.dennisbareis.com/devcon_exe.htm |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
| 19 | {{{ |
| 20 | devcon [/r] install INFfile HardwareID |
| 21 | }}} |
| 22 | |
| 23 | Parameters: |
| 24 | /r:: Conditional reboot. Reboots the system after completing an operation when a reboot is required to make the change effective. By default, DevCon does not reboot the system. |
| 25 | |
| 26 | INFfile:: Specifies the full path and file name of the INF file for the device. If you omit the path, DevCon assumes that the file is in the current directory. |
| 27 | |
| 28 | HardwareID:: Specifies a hardware ID for the device. |
| 29 | The specified hardware ID must exactly match the hardware ID of the device. Patterns are not valid. Do not type a single quote character (') to indicate a literal value. |
| 30 | |
| 31 | partly working: |
| 32 | {{{ |
| 33 | devcon.exe install c:\tmp\HECI\HECI.inf "PCI\VEN_8086&DEV_29B4" |
| 34 | }}} |
| 35 | Device is added twice. One time correctly, other with warning. Broken driver has exactly the hardware device given. |
| 36 | |
| 37 | Hint from |
| 38 | http://www.msfn.org/board/topic/17532-unattended-install-for-inf-drvers/ : |
| 39 | |
| 40 | use update (or updateni for non-interactive) to prevent this problem. |
| 41 | |
| 42 | {{{ |
| 43 | devcon.exe update c:\tmp\HECI\HECI.inf "PCI\VEN_8086&DEV_29B4" |
| 44 | }}} |