Skip to content
⌘ NSIS Forum Archive

ExecWait - VFPODBC.msi

3 posts

bankeris#edited

ExecWait - VFPODBC.msi

Hi,

Had 2.46b and now using 3.01b and still little old Microsoft Visual FoxPro driver can't be executed with both versions 🙁

i have code:

...
ExecWait '"$INSTDIR\VSTOR30\vstor30sp1-KB949258-x86.exe"'
ExecWait '"$INSTDIR\VFPODBC.msi"'
ExecWait '"$INSTDIR\setup.exe"'
...
VSTOR.. and setup.exe are executed then program installing, but VFPODBC.msi - not. Don't know why, i don't get any errors while compile or install, the file is in directory but he is not executed. Maybe NSIS not supporting .msi ? :/
jiake#
ExecWait '"$SYSDIR\msiexec.exe" /i /quiet /qb "$INSTDIR\VFPODBC.msi"'
Change /quiet, /qb options by your requirements.