0 out of 1 rated this helpful - Rate this topic

DirectoryEntry Constructor (String, String, String, AuthenticationTypes)

Initializes a new instance of the DirectoryEntry class.

Namespace:  System.DirectoryServices
Assembly:  System.DirectoryServices (in System.DirectoryServices.dll)
public DirectoryEntry(
	string path,
	string username,
	string password,
	AuthenticationTypes authenticationType
)

Parameters

path
Type: System.String
username
Type: System.String
The user name to use when authenticating the client. The Username property is initialized to this value.
password
Type: System.String
authenticationType
Type: System.DirectoryServices.AuthenticationTypes
One of the AuthenticationTypes values. The AuthenticationType property is initialized to this value.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Can't use this directoryentry constructor if other connections to the remotehost exist.

I attempt to connect to a remote system with an alternate set of creds (admin creds, while my normal user has a mapped share to the remote system as a nonadmin user), but receive

Source: System.DirectoryServices.AccountManagement Message: Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again. (Exception from HRESULT: 0x800704C3)

It would be nice to have a mechanism for retreiving this data which does not require one to kill all other connections to the target host!