- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这是我的一些示例代码,用于查找 OU 中的所有计算机对象。当我打印出属性字段时,我得到一个 System.__ComObject
用于多个值,例如 lastLogon
、lastLogonTimestamp
、pwdLastSet
、uSNChanged
等。我假设这些都是某种日期类型的值。
如何从中获取日期值?我想要一个 c# 解决方案,而不是像这样的 powershell 解决方案:https://sweeneyops.wordpress.com/2012/06/11/active-directory-timestamp-conversion-through-powershell/
谢谢
using (DirectoryEntry entry = new DirectoryEntry("LDAP://" + ou))
{
using (DirectorySearcher searcher = new DirectorySearcher(entry))
{
searcher.Filter = ("(objectClass=computer)");
searcher.SizeLimit = int.MaxValue;
searcher.PageSize = int.MaxValue;
foreach (SearchResult result in searcher.FindAll())
{
DirectoryEntry computer = result.GetDirectoryEntry();
foreach(string propName in computer.Properties.PropertyNames)
{
foreach(object value in computer.Properties[propName])
{
Console.WriteLine($"{propName}: {value}");
}
}
}
}
}
我知道对象内部有一个 long,我可以使用 DateTime.FromFileTime(longType)
从中获取日期。
最佳答案
Already answered here : 如果您只需要此接口(interface),则无需添加对 COM 类型库的引用。
要使用 COM 类型,您可以在自己的代码中定义接口(interface):
[ComImport, Guid("9068270b-0939-11d1-8be1-00c04fd8d503"), InterfaceType(ComInterfaceType.InterfaceIsDual)]
internal interface IAdsLargeInteger
{
long HighPart
{
[SuppressUnmanagedCodeSecurity] get; [SuppressUnmanagedCodeSecurity] set;
}
long LowPart
{
[SuppressUnmanagedCodeSecurity] get; [SuppressUnmanagedCodeSecurity] set;
}
}
并以同样的方式使用它:
var largeInt = (IAdsLargeInteger)directoryEntry.Properties[propertyName].Value;
var datelong = (largeInt.HighPart << 32) + largeInt.LowPart;
var dateTime = DateTime.FromFileTimeUtc(datelong);
还有一篇很好的文章,解释了how to interpret ADSI data
关于c# - OU 时间戳 ComObject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30249417/
给定一个带有多个 date_time 戳的字符串,我想 提取第一个戳及其前面的文本 候选字符串可以有一个或多个时间戳 后续的 date_time 戳记将被 sep="-" 隔开 后续date_time
是否可以合并从相机拍摄的文本和照片?我想在照片上标记日期和时间,但我在 Google 上找不到任何内容。 最佳答案 使用下面的代码来实现你所需要的。 Bitmap src = Bitm
有没有办法通过 Graph API 戳另一个用户?基于this post ,并使用 Graph Explorer ,我发布到“/USERID/pokes”,我已经授予它(Graph API 应用程序和
我有两个向左浮动的元素。一个是 body 的第一个 child ,另一个是容器的第一个 child ,容器是 body 的第二个 child 。 ...
我是一名优秀的程序员,十分优秀!