Hi,
I need help...I have a problem using RunProgramInGuest I run the program inside the VMWare and it works however the problem is if the program runs too long (more 20 minutes) inside the VMWare, my program keeps on waiting (until it timeouts) even if the program I executed is finished already. Is this a bug?
Here's the snippet of my code:
VMWareVirtualMachine.Process pCTCCAuto = vmwvmWorkingVirtualMachine.RunProgramInGuest(sProgram, sArguments, iTimeout);
if ((pCTCCAuto.ExitCode & 8) == 8) // check if bit is flagged
{
...
}
else
{
...
}
Thanks.