Forum Discussion
Oferv
15 years agoSuper Contributor
Hi,
Finally solved here is the solution:
function RunInstallation()
{
var path
FSO = new ActiveXObject("WScript.shell");
path = '"C:\\xxx.exe"'
//path = "\\Net\\xxx.exe"
FSO.run (path)
FSO.nothing
log.Message["Execution File Lunched"]
objFSO = nothing
}
the solution was to add ' before and after the " where i define the path.
Thanks for the help
Finally solved here is the solution:
function RunInstallation()
{
var path
FSO = new ActiveXObject("WScript.shell");
path = '"C:\\xxx.exe"'
//path = "\\Net\\xxx.exe"
FSO.run (path)
FSO.nothing
log.Message["Execution File Lunched"]
objFSO = nothing
}
the solution was to add ' before and after the " where i define the path.
Thanks for the help