VMware Cloud Community
BillStreet00
Enthusiast
Enthusiast
Jump to solution

Syncing vRO Appliance WF's

I have inherited three large vRO appliances (version 7.3.1) in dev, uat and prod respectively.  Due to various issues I have ended up with WF's with mismatched UID's and versions.  Unfortunately there are a large number of WF's in play.  Anyone have any experience pulling WF's names, UID's and versions into a report of some type?

Thanks

Reply
0 Kudos
1 Solution

Accepted Solutions
iiliev
VMware Employee
VMware Employee
Jump to solution

You can easily collect / report this information using vRO scripting.

var allWFs = Server.findAllForType("Workflow");

for each (var wf in allWFs) {

  System.log("Workflow id: " + wf.id + "  version: " + wf.version + "  name: " + wf.name);

}

---------------------------------------------------------------------------------------------------------

Was it helpful? Let us know by completing this short survey here.

View solution in original post

Reply
0 Kudos
2 Replies
iiliev
VMware Employee
VMware Employee
Jump to solution

You can easily collect / report this information using vRO scripting.

var allWFs = Server.findAllForType("Workflow");

for each (var wf in allWFs) {

  System.log("Workflow id: " + wf.id + "  version: " + wf.version + "  name: " + wf.name);

}

---------------------------------------------------------------------------------------------------------

Was it helpful? Let us know by completing this short survey here.

Reply
0 Kudos
BillStreet00
Enthusiast
Enthusiast
Jump to solution

Perfect!  Thank you.

Reply
0 Kudos