使用 LDAP 列出所有密码设置对象 (PSO)
我应该如何继续获取特定域上的所有活动 PSO。
我知道该域包含以下 PSO:
CN=PSO-Standard
CN=PSO-Sensitive
但我必须创建一个报告来显示它们,因此我必须以动态方式加载它们。
我猜想有一种过滤器可以获取 PSO 容器,然后循环遍历其记录集。
例如,
.filter = "(CN=Password Settings Container)"
.attributes = "msDS-PasswordSettingsContainer"
提前致谢。
使用经典的 ASP 和 VBScript
how I should proceed to get all active PSOs on a specific domain.
I know that this domain contains the following PSOs:
CN=PSO-Standard
CN=PSO-Sensitive
But I must create a report to display them so I must load them in dynamic way.
I guess there is a kind of filter to get the PSO container and then loop through its recordset.
e.g.
.filter = "(CN=Password Settings Container)"
.attributes = "msDS-PasswordSettingsContainer"
thx in advance.
using classic asp with vbscript
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的过滤器是:“(objectClass=msDS-PasswordSettings)”
这是一个要测试的示例 Vbscript:
The filter you are looking for is : "(objectClass=msDS-PasswordSettings)"
Here is a sample Vbscript to test :