我正在尝试接收当前连接到 AD 的所有计算机以及其中哪些计算机有用户登录到 AD。我已经尝试使用ComputerPrincipal
's.LastLogon
属性,但我得到一个完全关闭的值,大约一周。
我想知道 AD 中哪些计算机可用。我可以使用另一种方法吗?
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, "192.168.0.101:389", "Administrator", "XXXX");
// define a "query-by-example" principal - here, we search for a ComputerPrincipal
ComputerPrincipal qbeComputer = new ComputerPrincipal(ctx);
// create your principal searcher passing in the QBE principal
PrincipalSearcher srch = new PrincipalSearcher(qbeComputer);
// find all matches
foreach (var found in srch.FindAll())
{
// do whatever here - "found" is of type "Principal" - it could be user, group, computer.....
ComputerPrincipal cp = found as ComputerPrincipal;
if (cp != null)
{
string computerName = cp.Name;
DateTime? lastLogon = new DateTime();
lastLogon = cp.LastLogon;
DateTime convertedDate = DateTime.SpecifyKind(DateTime.Parse(cp.LastLogon.ToString()), DateTimeKind.Utc);
var kind = convertedDate.Kind;
DateTime dt = convertedDate.ToLocalTime();
Response.Write(cp.Name+" : "+ dt.ToString()+ "<br />");
}
}
编辑:
我希望打印出来是这样的:
计算机 1:正确 计算机 2:错误 计算机 3:错误 计算机 4:正确
如果当前已登录,是否无法查询计算机?我只需要一个布尔值,True 或 False。