Specifying Alternate ADO Credentials

To change ADO's default user credentials when searching AD, you need to configure the Command object’s User ID, Password, and Encrypt Password properties.

Bill Stewart

June 3, 2008

1 Min Read
ITPro Today logo

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.

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like