Changes between Version 3 and Version 4 of windows/driver


Ignore:
Timestamp:
Jun 27, 2012, 5:51:03 PM (12 years ago)
Author:
joergs
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • windows/driver

    v3 v4  
    88  * devcon, http://support.microsoft.com/kb/311272/en-us
    99  * rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 c:\xxxx.inf
     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{{{
     20devcon [/r] install INFfile HardwareID
     21}}}
     22
     23Parameters:
     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
     31partly working:
     32{{{
     33devcon.exe install c:\tmp\HECI\HECI.inf "PCI\VEN_8086&DEV_29B4"
     34}}}
     35Device is added twice. One time correctly, other with warning. Broken driver has exactly the hardware device given.
     36
     37Hint from
     38http://www.msfn.org/board/topic/17532-unattended-install-for-inf-drvers/ :
     39
     40use update (or updateni for non-interactive) to prevent this problem.
     41
     42{{{
     43devcon.exe update c:\tmp\HECI\HECI.inf "PCI\VEN_8086&DEV_29B4"
     44}}}