문제

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

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top