是否可以在不运行 powershell 脚本的情况下检查 Windows Server 2003 中的 LDAP 版本?
谢谢,吐司
答案1
下面的vbscript可以工作:
Set objRootDSE = GetObject("LDAP://RootDSE")
For Each strVersion In objRootDSE.Get("SupportedLDAPVersion")
Wscript.Echo "LDAP Version: " & strVersion
Next
返回:
LDAP 版本:3
LDAP 版本:2
答案2
除非我大错特错,否则 AD 的 LDAP 统一支持 LDAPv3 协议。