Skip navigation

Specifying Alternate ADO Credentials

By default, ActiveX Data Objects (ADO) searches Active Directory (AD) using the currently logged-on user's credentials. If you need to specify alternate credentials, configure the User ID, Password, and Encrypt Password properties on the Command object. Use the same syntax to set these properties on the Command object as you would when configuring the Connection object, as in the following code:

 

Command.Properties.Item("User ID") = "Administrator"
Command.Properties.Item("Password") = "password"
Command.Properties.Item("Encrypt Password") = True

 

For more information about setting alternate credentials and using ADO to search AD, see Microsoft’s Searching with ActiveX Data Objects (ADO) Web page at http://msdn2.microsoft.com/en-us/library/aa746471.aspx.

Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish