How to find out what domain your machine is a member of
Here is a C# snippet of how to determine what domain your machine is a member of:
using System.Net.NetworkInformation;
...
string myDomain = IPGlobalProperties.GetIPGlobalProperties().DomainName;
...