I am trying to install the Sentinel Protection Server as a prerequisite using the following code
Set Variable PROGRESSTEXT to Installing drivers for Sentinel SuperPro
Set Variable SPROFILES to
Define File Bag : #SUPERPRO#\\7.3.0\\*.msi, get runtime location of files into variable SPROFILES
Set Variable SPROERR to
Does File Exist $SPROFILES$\\Sentinel_Protection_Installer_7.3.0.msi (get result into variable SPROEXIST)
MessageBox: Sentinel Protection Installer, Define File Bag in $NEWLINE$$SPROFILES$$NEWLINE$The SPROEXIST variable is $SPROEXIST$
if Variable SPROEXIST not Equals TRUE
Set Variable SENTINEL to NOTFOUND
MessageBox: Sentinel Protection Installer, Could not find Sentinel Protection Installer in $SPROFILES$
else
Install/Remove MSI Package $SPROFILES$\\Sentinel_Protection_Installer_7.3.0.msi[/passive ENABLEFIREWALL=TRUE] (get result into Variable SPROERR)
end
The Message box in line 6 indicates that the file bag is in
D:\\data\\Sentinel Protection Server\\mFileBagIDE.dll\\bag\and that the wanted file exist (SPROEXIST variable is TRUE).
Nevertheless, when I continue, the call to (Un)Install MSI fails with the error "The filename, directory name, or volume label syntax is incorrect".
Does anyone have any idea what might be wrong?