I have a deployment of 6 tasks and I want to make sure that step #2 will not be processed if step #1 failed. Similarly, subsequent tasks should only be processed if the previous ones were successful.
To do this, I have to run a vb script before installation or uninstallation on each step. I'm trying to use a script (not from me) that I have modified for pre-uninstallation of software and also post-installation of the software.
Pre-uninstallation: The script will look if the specified "exe" exists on the server and, if so, then it will run the msiuninstall <application_name>
.
If the uninstallation is successful, the post-installation script will check if the "exe" file exists again on the server, and it shouldn't find it (because it was deleted by the uninstallation), then it will return an exit code of success
and proceed to run the next process.
Here an example:
Uninstall "Software#1" with msiuninstall Software#1.exe command
Uninstall "Software#2" with msiuninstall Software#2.exe command
Install "Software #3"with an .exe extension
Re install "Software #2" with an .msi extension
Re install "Software #1" with a .msi extension.
Send email to confirm the deployment is successful
At the end, Step 6 should send an email to confirm that the 6 steps of the deployment was completed without errors. How do I go about this?
This is the script I'm working with:
'This script will look if an .exe file exist for a specific application. '==========================================================================================
path = WScript.Arguments.Item(0)
set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists("C:\Inetpub\wwwroot\Enterprise\EnterpriseWS\web.config")= True then
exitCode = 0
else
exitCode = 1
End If
Wscript.Quit exitCode
You need to put the file name in quotes: