Oferv
13 years agoSuper Contributor
TC's inconsistent behaviour
function RunMSI()
{
Log["AppendFolder"]("Start App installation")
var MSIpath = "C:\\Users\\<USER>\\App.msi";
if(TestedApps.Find("msiexec.exe") == -1)
{
TestedApps.Add(msiexec.exe, "/i " + MSIpath);
}
TestedApps.msiexec.Run();
Log["PopLogFolder"]()
}
why the above function sometimes launch the msi and sometime it's not?
i can't relay on it to launch the msi this way.
thanks