Greetings,
through some post in here i could gather the info to start vray dr spawners by command execution
for example:
cmd /C start "vrayspawner2011" "C:\Program Files\Autodesk\3ds Max 2011\vrayspawner2011.exe"
but.
this dont work:
cmd /C "taskkill" "c:\windows\system32\taskkill.exe" /im vrayspawner2011.exe /f /t
status halt @ “PENDING” for about 1 hour then timeouts so it is either “deadline” that is blocking additional commands sent to that machine untill it sees the first result of the command or the “command” is wrong.
My questions to who may are:
1: how can i send execution commands but prevent it to wait for the returned results.
2:instead of sending command through command execution, i want bat files o be executed. a bat file with multiple commands like:
restart vray spawners:
cmd /C "taskkill" "c:\windows\system32\taskkill.exe" /im vrayspawner2011.exe /f /t
cmd /C start "vrayspawner2011" "C:\Program Files\Autodesk\3ds Max 2011\vrayspawner2011.exe"
any help is apreciated.