Question

I have an INF file in which I have to right click to install the files - So I wanted to convert it into a EXE Installer which has a Progress Bar !!! So I just need all the files in ONE EXE file so when I double click it the installation starts ...

Regards, Netguy

Was it helpful?

Solution

Here is what you can do:

First, create a .bat file with the following command:

rundll32 syssetup,SetupInfObjectInstallAction DefaultInstall 128 .\inffile.inf

for each .inf file. This command will install your file.

Then, start iexpress, this program is provided with windows. Follow the wizard. When asked to add files, add all your .inf files and the .bat file. When asked for the install script, select the .bat file.

That should do it.

Regards, Patrik

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top