Does Silent Web Update Enable Display Error?
Posted: Fri Nov 20, 2015 2:12 am
Hi,
As you see the code above, if the sql script is running fine, it will display messagebox "Success...." otherwise it will display 'Error......."
This messagebox will display for user if the installer do in manual (without using web update).
I found interesting that if using web update and also in silent mode, the installer does not display any error message box even though the code is there especially running sql script.
Any chance to tell InstallAware to display error message during web update (in silent mode)?
Code: Select all
Microsoft SQL Server Script : Connect to database master on instance $SERVERNAME$\$INSTANCENAME$ as user $SQLUSER$ (get result into variable SQLTEST)
Comment: Testing complete
if Variable SQLTEST Equals SUCCESS
MessageBox: Success!, Script have been successful deployed.
Hide Dialog
else
MessageBox: Error!, Connection failed. Would you like to try again?
Hide Dialog
if Variable WIZARD Equals RETRY
Comment: Test failed, and retry desired; loop back to the connection dialog
GoTo Label: Select SQL Server
else
if Variable WIZARD Equals CANCEL
GoTo Label: Main Install
end
end
end
As you see the code above, if the sql script is running fine, it will display messagebox "Success...." otherwise it will display 'Error......."
This messagebox will display for user if the installer do in manual (without using web update).
I found interesting that if using web update and also in silent mode, the installer does not display any error message box even though the code is there especially running sql script.
Any chance to tell InstallAware to display error message during web update (in silent mode)?