本文介绍了在C#中获取域LogonServer的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在命令提示符下,我可以通过输入以下内容来获取域登录服务器:
In a command prompt I am able to get the domain logon server by typing:
echo %logonserver%
如何在C#中获得相同的结果?
How can I get this same result in C#?
推荐答案
System.Environment.GetEnvironmentVariable("logonserver")
System.Environment.GetEnvironmentVariable("logonserver")
这篇关于在C#中获取域LogonServer的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!