PDA

View Full Version : Advanced Installer Command Line Problem


ahouriet
09-26-2008, 08:41 AM
I'm attempting to configure the Advanced Installer (6.5.2) build to update it's version from my application executable. It looks like the sequence of flags on the command line is incorrect, I get an error on that build step.

When I manually copied and pasted and modified the sequence, it worked ok.

Here is the command line generated that fails:
"C:\Program Files\Caphyon\Advanced Installer 6.5.2\AdvancedInstaller.com" /edit MySetup.aip /setversion MyApplication.exe -fromfile

If I move the -fromfile to before the application filename, it works:
"C:\Program Files\Caphyon\Advanced Installer 6.5.2\AdvancedInstaller.com" /edit MySetup.aip /setversion -fromfile MyApplication.exe

Is there a way I can change how the command line is built?

Thanks,
Andy

kinook
09-26-2008, 10:45 AM
Unzip and build the attached project to fix this problem. Thanks.

ahouriet
09-26-2008, 11:34 AM
Works perfectly now, thanks!

Andy