How do I detect if my program runs in an Active Directory environment?
I'm using C# and .Net 2.0
|
2
|
How do I detect if my program runs in an Active Directory environment? I'm using C# and .Net 2.0
|
|||
|
|
|
|
I found something that works: using System.Net.NetworkInformation; IPGlobalProperties.GetIPGlobalProperties().DomainName; Works with a local user and a domain user. |
||
|
|
|
|
This code will check if the Computer itself is a member of a domain
However the computer can be in a domain, but the currently logged in user may be a local user account. If you want to check for this use the |
||
|
|
From http://msdn.microsoft.com/en-us/library/system.directoryservices.directoryentry.path.aspx
So without a domain the binding to "LDAP://RootDSE" should either fail or return nothing. I didn't try it for myself.
This is definitely a cleaner way of checking for an Active Directory than relying on an environment variable (which the user could delete or add to spoof the program). |
|||
|
|
|
|
Try getting Environment.UserDomainName and comparing it to Environment.MachineName. If the two are the same then it's likely that the user does not have a domain. If they are not the same then the user is logged into a domain which must have a directory server. |
||
|
|
|
|
One way might be to query the LOGONSERVER environmental variable. That'll give the server name of your AD controller... Which, as far as I know, will be blank (or match current workstation? Not sure) if it isn't currently logged into a domain. Example Usage:
|
||
|
|