user1104946
user1104946

Reputation: 690

How to get orchestration instance server name

I have two server where orchestration can run.I need to know the server name where my orchestration instance has run .How to get this information.

Upvotes: 0

Views: 458

Answers (1)

DTRT
DTRT

Reputation: 11040

Well...why? If you have the Orchestration's Host mapped to more then on server, there is no reliable or supported way to influence that.

However, you can use any standard .Net technique to get the local computer name. For example:

System.Environment.MachineName

Upvotes: 1

Related Questions