检索过去 15 分钟内创建的 LDAP 安全组
Retrieve LDAP security groups created in the past 15 minuites
我想从 Active Directory 中检索在过去 15 分钟内创建的 Windows 个安全组。
我曾尝试查找过去是否有人创建过这样的 LDAP 查询,但没有成功。
任何帮助都会很棒。
LDAP 过滤器类似于:
(&(groupType:1.2.840.113556.1.4.803:=2147483648)(whenCreated>=20180301000000.0Z))
应该做的工作。
groupType:1.2.840.113556.1.4.803:=2147483648 将 return 全部 All Security Groups (local, global and universal) 并且 whenCreated>=20180301000000.0Z 表示在提供的时间之后创建。
我想从 Active Directory 中检索在过去 15 分钟内创建的 Windows 个安全组。
我曾尝试查找过去是否有人创建过这样的 LDAP 查询,但没有成功。
任何帮助都会很棒。
LDAP 过滤器类似于:
(&(groupType:1.2.840.113556.1.4.803:=2147483648)(whenCreated>=20180301000000.0Z))
应该做的工作。 groupType:1.2.840.113556.1.4.803:=2147483648 将 return 全部 All Security Groups (local, global and universal) 并且 whenCreated>=20180301000000.0Z 表示在提供的时间之后创建。