1

How do I install a hardware driver (inf file) using C++?

Platform : Win32

Kristina
  • 15,859
  • 29
  • 111
  • 181

2 Answers2

2

I would look at using the InstallHinfSection function, in the setupapi.dll. Here's the related docs:

http://msdn.microsoft.com/en-us/library/aa376957%28VS.85%29.aspx

Ed.
  • 1,172
  • 6
  • 9
2

The process is usually called pre-installation. (The normal install process is triggered by the arrival of an hardware device.)

The relevant functions can be found in <DIFxAPI.h> from the DDK. You probably want to call DriverPackageInstall(). The expected return value is ERROR_NO_SUCH_DEVINST [sic] as there won't be such a device yet.

There's some 64 bit funkyness: you can't install a 64 bits driver from a Win32 app (at least not in XP/Vista/Windows7/2003/2008). Hence, your Win32 installer must check if DriverPackageInstall() returns ERROR_IN_WOW64 and then call CreateProcess to start your 64 bits installer.

MSalters
  • 173,980
  • 10
  • 155
  • 350