I'm trying to install a driver via an inf file using this command:
rundll32.exe setupapi,InstallHinfSection DefaultInstall 128 .\my_driver.inf
According to MSDN (http://msdn.microsoft.com/en-us/library/aa376957%28v=vs.85%29.aspx), by suplying 128 as the parameter, apart from "Set the default path of the installation to the location of the INF. This is the typical setting", the install should (+0) not ask the user for a reboot. However, in my case, it always does.
What am I doing wrong?