How do I detect whether the machine is joined to an Active Directory domain (versus in Workgroup mode)?
|
feedback
|
|
You can PInvoke to Win32 API's such as NetGetDcName which will return a null/empty string for a non domain-joined machine. Even better is NetGetJoinInformation which will tell you explicitly if a machine is unjoined, in a workgroup or in a domain. Using
| |||||||||||
feedback
|
|
Don't fool with pinvoke if you don't have to. Reference System.DirectoryServices, then call:
Throws an | |||||||||||||||
feedback
|
That should allow you to get the domain. I believe it will be null or empty if you are part of a workgroup and not a domain. Make sure to reference System.Management | |||||||||
feedback
|
|
The Environment variables could work for you.
MSDN Link for some more details.
I'm not sure this environment variable exists without being in a domain. Correct me if I'm wrong Windows Admin geeks -- I believe a computer can be in several domains so it may be more important to know what domain, if any, you are in instead of it being in any domain. | |||||||||||
feedback
|
|
Just wanted to drop Rob's Code in VB:
As Well as Stephan's code here:
| ||||
|
feedback
|