Get Domain LogonServer in C#

心不动则不痛 提交于 2021-02-08 09:16:28

问题


In a command prompt I am able to get the domain logon server by typing:

echo %logonserver%

How can I get this same result in C#?


回答1:


System.Environment.GetEnvironmentVariable("logonserver")



来源:https://stackoverflow.com/questions/431836/get-domain-logonserver-in-c-sharp

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!