How to convert Active Directory pwdLastSet to Date/Time(如何将 Active Directory pwdLastSet 转换为日期/时间)
问题描述
public static string GetProperty(SearchResult searchResult, string PropertyName)
{
if (searchResult.Properties.Contains(PropertyName))
{
return searchResult.Properties[PropertyName][0].ToString();
}
else
{
return string.Empty;
}
}
上述方法适用于大多数 Active Directory 属性,但与日期/时间相关的属性除外,例如 pwdLastSet、maxPwdAge 等.
The above method works great for most Active Directory properties except those that are related to date/time such as pwdLastSet, maxPwdAge, etc.
我的问题是如何将 pwdLastSet 设置为人类可读的日期时间(例如 8/13/2013 或 2013 年 8 月 13 日等)
My question is how to I get the pwdLastSet to a human readable datetime (like 8/13/2013 or August 13, 2013, etc)
我试过了,但它抛出了异常
I've tries this but it threw exceptions
public static Int64 ConvertADSLargeIntegerToInt64(object adsLargeInteger)
{
var highPart = (Int32)adsLargeInteger.GetType().InvokeMember("HighPart", System.Reflection.BindingFlags.GetProperty, null, adsLargeInteger, null);
var lowPart = (Int32)adsLargeInteger.GetType().InvokeMember("LowPart", System.Reflection.BindingFlags.GetProperty, null, adsLargeInteger, null);
return highPart * ((Int64)UInt32.MaxValue + 1) + lowPart;
}
我使用以下代码获取时间为 Int64
I am using the following code to get the time as an Int64
Int64 passwordLastSet = ConvertADSLargeIntegerToInt64(objResult.Properties["pwdLastSet"][0]);
然后我打算使用 DateTime(Int64) 构造函数来创建一个 DateTime
Then I plan on using the DateTime(Int64) constructor to create a DateTime
推荐答案
根据 MSDN 文档:
此值存储为一个大整数,表示自 1601 年 1 月 1 日 (UTC) 以来的 100 纳秒间隔数.
This value is stored as a large integer that represents the number of 100 nanosecond intervals since January 1, 1601 (UTC).
这与 DateTime.FromFileTimeUtc
、如所述完全一致这里.
而且我不确定为什么您觉得需要对整数进行低级操作.我想你可以施展它.
And I'm not sure why you feel the need to do the low level manipulation of the integer. I think you could just cast it.
所以就这样做:
long value = (long)objResult.Properties["pwdLastSet"][0];
DateTime pwdLastSet = DateTime.FromFileTimeUtc(value);
这篇关于如何将 Active Directory pwdLastSet 转换为日期/时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 Active Directory pwdLastSet 转换为日期/时间


基础教程推荐
- 从 VB6 迁移到 .NET/.NET Core 的最佳策略或工具 2022-01-01
- 如何使用OpenXML SDK将Excel转换为CSV? 2022-01-01
- C# - 如何列出发布到 ASPX 页面的变量名称和值 2022-01-01
- C# - 将浮点数转换为整数...并根据余数更改整数 2022-01-01
- 使用 SED 在 XML 标签之间提取值 2022-01-01
- 创建属性设置器委托 2022-01-01
- Page.OnAppearing 中的 Xamarin.Forms Page.DisplayAlert 2022-01-01
- 我什么时候应该使用 GC.SuppressFinalize()? 2022-01-01
- 覆盖 Json.Net 中的默认原始类型处理 2022-01-01
- 当键值未知时反序列化 JSON 2022-01-01