Issues with EXECWAIT... ?
I am calling two other installers from my NSIS installer.
One works fine. The other won't launch.
I checked the spelling, path, played with quotes etc etc.
I even changed the order, putting the second one first etc. Didn't work.
Any ideas why the first one works, and the other doesn't !?
(The DVD Styler one works)
MessageBox MB_YESNO "Do you now want to install the DVD Styler? Press YES to install or NO to skip." /SD IDYES IDNO endStylerInstall
ExecWait "$DESKTOP\DVDStyler-1.8.1-win32.exe"
Goto endStylerInstall
endStylerInstall:
MessageBox MB_YESNO "We have copied the image files to your hard drive. Do you now want to install the Prism Video file converter? Press YES to install or NO to skip." /SD IDYES IDNO endPrismInstall
ExecWait "$DESKTOP\Prism-Installer-1.1.exe"
Goto endPrismInstall
endPrismInstall: