Microsoft KB Archive/255126: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - """ to """)
 
(2 intermediate revisions by the same user not shown)
Line 47: Line 47:
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:
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:
<pre class="codesample">set obj = GetObject(AdsPath)
<pre class="codesample">set obj = GetObject(AdsPath)
obj.GetInfoEx Array(&quot;NT-Security-Descriptor;binary&quot;), 0
obj.GetInfoEx Array("NT-Security-Descriptor;binary"), 0
                 </pre>
                 </pre>
If you have not installed Exchange Server 5.5 Service Pack 1 (SP1) or later, you may receive the following error:
If you have not installed Exchange Server 5.5 Service Pack 1 (SP1) or later, you may receive the following error:
Line 56: Line 56:
</div>
</div>
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:
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:
<pre class="codesample">obj.GetInfoEx Array(&quot;NT-Security-Descriptor&quot;), 0
<pre class="codesample">obj.GetInfoEx Array("NT-Security-Descriptor"), 0
v = obj.Get(&quot;NT-Security-Descriptor&quot;)&lt;BR/&gt;
v = obj.Get("NT-Security-Descriptor")<BR/>
Set propVal = CreateObject(&quot;PropertyValue&quot;)
Set propVal = CreateObject("PropertyValue")
propVal.PutObjectProperty ADSTYPE_OCTET_STRING, v
propVal.PutObjectProperty ADSTYPE_OCTET_STRING, v
Set sd = propVal.GetObjectProperty(ADSTYPE_NT_SECURITY_DESCRIPTOR)
Set sd = propVal.GetObjectProperty(ADSTYPE_NT_SECURITY_DESCRIPTOR)
Line 75: Line 75:


To resolve both errors, install Exchange Server 5.5 Service Pack 1 (SP1) or later, and use the binary operator as follows:
To resolve both errors, install Exchange Server 5.5 Service Pack 1 (SP1) or later, and use the binary operator as follows:
<pre class="codesample">obj.GetInfoEx Array(&quot;NT-Security-Descriptor;binary&quot;), 0
<pre class="codesample">obj.GetInfoEx Array("NT-Security-Descriptor;binary"), 0
                 </pre>
                 </pre>


Line 83: Line 83:
== REFERENCES ==
== REFERENCES ==


For a complete sample that demonstrates how to retrieve and modify the NT-Security-Descriptor, see the sample &quot;Setting and Modifying the Exchange Security Descriptor&quot; in the Adsi.htm file. The Adsi.htm file is part of the ADSI 2.5 Resource Kit, which is available for download from the following Web site:
For a complete sample that demonstrates how to retrieve and modify the NT-Security-Descriptor, see the sample "Setting and Modifying the Exchange Security Descriptor" in the Adsi.htm file. The Adsi.htm file is part of the ADSI 2.5 Resource Kit, which is available for download from the following Web site:
<div class="indent">
<div class="indent">



Latest revision as of 13:53, 21 July 2020

Knowledge Base


PRB: ADSI Error '-2147016694(8007200a)' and '-2147023591(80070519)'

Article ID: 255126

Article Last Modified on 9/28/2007



APPLIES TO

  • Microsoft Exchange Server 5.5 Standard Edition
  • Microsoft Active Directory Service Interfaces 2.5



This article was previously published under Q255126

SYMPTOMS

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.

RESOLUTION

To resolve both errors, install Exchange Server 5.5 Service Pack 1 (SP1) or later, and use the binary operator as follows:

obj.GetInfoEx Array("NT-Security-Descriptor;binary"), 0
                

REFERENCES

For a complete sample that demonstrates how to retrieve and modify the NT-Security-Descriptor, see the sample "Setting and Modifying the Exchange Security Descriptor" in the Adsi.htm file. The Adsi.htm file is part of the ADSI 2.5 Resource Kit, which is available for download from the following Web site:

To locate the sample, open Adsi.htm, select Interop, and then click Exchange. You will see the sample listed in the table of contents.


Additional query words: -2147016694(8007200a) -2147023591(80070519)

Keywords: kbmsg kbprb KB255126