When you use Active Directory Service Interfaces (ADSI) to retrieve the Exchange Server 5.5 recipient attribute NT-Security-Descriptor as a binary value, instead of as an ASCII value, you use the binary operator as follows:
set obj = GetObject(AdsPath)
obj.GetInfoEx Array("NT-Security-Descriptor;binary"), 0
If you have not installed Exchange Server 5.5 Service Pack 1 (SP1) or later, you may receive the following error:
Run-time '-2147016694(8007200a)'
Automation Error
The specified directory service attribute or value does not exist.
If your Exchange Server 5.5 is running on Microsoft Windows 2000 and you choose to modify the GetInfoEx command to not include the binary operator, and then attempt to convert a raw security descriptor to an IADsSecurityDescriptor by using the following code:
obj.GetInfoEx Array("NT-Security-Descriptor"), 0
v = obj.Get("NT-Security-Descriptor")<BR/>
Set propVal = CreateObject("PropertyValue")
propVal.PutObjectProperty ADSTYPE_OCTET_STRING, v
Set sd = propVal.GetObjectProperty(ADSTYPE_NT_SECURITY_DESCRIPTOR)
you may receive the following error:
Run-time '-2147023591(80070519)'
Automation Error
The revision level is unknown.