Within my NSI script i have the following
Section CreateDBUsing the NSIS installer i get the following error in the logs
detailprint "Creating SQL database on $DBNAME"
ExecWait '"$INSTDIR\install\install.vbs" "$DBNAME" "$DBLOGIN" "$DBPASSWORD" "$APPNAME" "$WEBIP"'
IfErrors +1 +2
LogText 'Error running "$INSTDIR\install\install.vbs" "$DBNAME" "$DBLOGIN" "$DBPASSWORD" "$APPNAME" "$WEBIP"'
SectionEnd
Exec: failed createprocessfor this command.
I need this script to execute before the installer exits. Can anyone shed any light or recommend and alternative?
Thanks
Graz