How can I get hostname that agent puts in the WDE login from a Custom Module of an custom extension?
Thank you for all!
How can I get hostname that agent puts in the WDE login from a Custom Module of an custom extension?
Thank you for all!
That will be the host of Configuration Server:
IConfigurationService confService = container.Resolve<IConfigurationService>();
log.Debug("Configuration Service Host: " + confService.ConfigServerHost);