我想设置 DirectoryEntry 对象的 MaxPasswordAge 属性。我相信它是 IADSLargeInteger 类型。现在我想以编程方式将其设置为某个值。如何将时间跨度转换为 IADSLargeInteger。例如。如果我想将其设置为 10 天,我该怎么做。直接设置是不行的。
DirectoryEntry child = new DirectoryEntry("LDAP://" + domain);
child.Properties["minPwdAge"].Value = ...
我如何将该值设置为 n 天?任何帮助表示赞赏。