Hi,
I know that the documentation says:
But is there any way to be able to access/use the power management features through the pulse web script, I would like to be able to use “wake on lan”
Hi,
I know that the documentation says:
But is there any way to be able to access/use the power management features through the pulse web script, I would like to be able to use “wake on lan”
Hey Jacob,
Power Management itself isn’t exposed to the API, but you can use deadlinecommand’s Remote Control commands by using the ExecuteCommand API call:
thinkboxsoftware.com/deadlin … _Utilities
Here’s the usage for deadlinecommand’s -RemoteControl command:
So to use WOL to start the slave machine, you could run this:
deadlinecommand.exe -RemoteControl slave001,slave002,slave003 StartMachine
To use this in a script with ExecuteCommand, you would do something like this:
from Deadline.Scripting import *
...
ClientUtils.ExecuteCommand( ("-RemoteControl", "slave001,slave002,slave003", "StartMachine") )
Hope this helps!