Bigfix action script stuck on "running" status while executing exe

While running an exe in Software distribution, bigfix is stuck in wait run.bat. However , installation is completed, app is installed on machine. The setup.exe is still running for some reason,

echo Command: “C:\CNO\ToadDataPoint_pro_5.3.333.exe” /64BIT /S INSTALLDIR=“C:\Program Files (x86)\Quest Software\Toad Data point 5.3” LICENSE=“C:\CNO\License.key” COMPANYNAME=“CNO Services LLC” ALLUSERS=1 >> “{parameter “logFolder”}{parameter “logFile”}”

Is there any way to come out of the wait command after some time? or what could be the reason it is stuck?

You can use below termination stuff to kill it after certain time if its still running.

//override timeout after 15 min
override wait
timeout_seconds=900
disposition=terminate
wait cmd.exe /C echo Command: “C:\CNO\ToadDataPoint_pro_5.3.333.exe” /64BIT /S INSTALLDIR=“C:\Program Files (x86)\Quest Software\Toad Data point 5.3” LICENSE=“C:\CNO\License.key” COMPANYNAME=“CNO Services LLC” ALLUSERS=1 >> “{parameter “logFolder”}{parameter “logFile”}”

But before that I would recommend check and run your batch locally to see if there any any pause at the end or any input needed , remove that and save it.

4 Likes