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.
June 3, 2008
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.
About the Author
You May Also Like