Forum Discussion
EricMunYew_C_Intel
Frequent Contributor
5 years agoHi, Giorgio
You can get the list of all master services using get_service_paths in your System Console, and then assign a variable name to the first index of the list and so on.
set masters [get_service_paths master]
set master [lindex $masters 0]
open_service master $master
...
...
close_service master $master
Am I answering your question ?
Thanks.
Eric