Page 1 of 1
Features for Installer
Posted: Sat Sep 22, 2007 8:06 pm
by mz
I currently making install creator program and i need some help adding some features to it.
I need help on how to register ActiveX and install driver using .inf files.
Help will be greatly appreciated, thanks.

Posted: Mon Sep 24, 2007 6:45 pm
by mz
Anyone?
Posted: Mon Sep 24, 2007 8:00 pm
by Thorsten1867
Code: Select all
RunProgram(SystemDir$+"regsvr32.exe", "/S "+File$, GetPathPart(File$), #PB_Program_Wait)
Posted: Mon Sep 24, 2007 9:13 pm
by tinman
Have you had a look at Microsoft's Driver Install Frameworks (
http://www.microsoft.com/whdc/driver/in ... tools.mspx). It might make things easier for you, as the work of actually installing the drivers is done already.
Posted: Tue Sep 25, 2007 1:00 pm
by mz
Thorsten1867 wrote:Code: Select all
RunProgram(SystemDir$+"regsvr32.exe", "/S "+File$, GetPathPart(File$), #PB_Program_Wait)
Will you tell me more info about what file extensions are able to be registered and on what OS's?
Thanks,

Posted: Tue Sep 25, 2007 4:02 pm
by Thorsten1867
Windows only! (C:\WINDOWS\system32\regsvr32.exe)
It should work with 'dll' and 'exe', but I have no ActiveX file to test it.
Posted: Tue Sep 25, 2007 5:25 pm
by mz
thanks for the info!