VMware Cloud Community
MikeHandsome
Contributor
Contributor

Call .vbs from Orchestrator

Hi together,

is it possible to call a local .vbs script out of a VCO Workflow Scripting Action Element?

Thanks,

Mike

Reply
0 Kudos
1 Reply
RainerVM
Enthusiast
Enthusiast

Hi Mike,

yes it's possible, just do like this:

var strCmd = "C:
Support
Tools
yourscript.vbs";
var objCmd = new Command(strCmd);

System.log("Call external script: " + strCmd);

var intRC = objCmd.execute(true);

Rainer

Reply
0 Kudos