描述 ADSI 路径
轻型目录访问协议 (LDAP) 要求在 LDAP Active Directory 服务接口 (ADSI) 路径中使用某些字符时,使用反斜杠 (\) 字符对其进行转义。
,=+<>#;\"
只有 ADSIPath 属性值需要转义字符。
以下示例显示了如何定义 ADSIPath 属性。 请注意,abc# 的 CN 属性值中的 # 字符已转义。
// #include <windows.h> for this code to compile
BSTR strObjPath =
SysAllocString(L"ds_user.ADSIPath=\"LDAP://CN=abc\#,"
L"CN=Users,DC=dsprovider,DC=nttest,"
L"DC=microsoft,DC=com\"");
// Use strObjectPath here.
SysFreeString(strObjPath); // Free memory resources.
注意
有关在特定操作系统上支持和安装该组件的详细信息,请参阅 WMI 组件的操作系统可用性。