|
I get the following Error:
An Active Directory Domain Controller for This Domain Could Not be Contacted
and...
I have working internet. I have an AD DC set up on the same subnet, but I thought I set this up before without having an AD DC.
Any ideas on...
Started by Noah Clark on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
So is Domain controller, do you also use....
I always find the Domain Controller Diagnostic Tool (dcdiag.exe) tool useful when you have problems with a Windows AD domain.
To name using nslookup; if not add a reverse zone entry for it .
|
|
Currently we have an Active Directory setup, and say the name is 'domain.com'. The DNS entries for domain.com has two A records pointing to the two domain controllers. I would like internal users to be able to access our website by using http://domain...
Started by Bob H on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
You're learning why you shouldn't use the same domain name for your Active Directory as you're usingThis is the Active Directory equivalent of putting a gun to your servers and pulling the trigger for your external Internet ....
|
|
Is there any reason why I shouldn't use example.com as my AD domain versus example.local or some other non-existant variant?
Started by WedTM on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
The reason that AdamB to host the DNS for Active Directory locally!
The DNS for your Internet domain name (for your email shouldn....
Don't use your "real domain name" for an Active Directory domain name.
As an example.
|
Ask your Facebook Friends
|
Something very odd is happening. We have a Windows Server 2003 computer that is NOT part of our domain. It is simply just serving up files via file shares (don't ask me why they used Win 2k3 for a simple fileserver).
Anyways I'm attempting to join it ...
Started by smoak on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Take 5 trying to join the domain are you typing in the NetBIOS name of the domain or the DNS name of the domain? Whichever one....
Computer and sniff the traffic during the domain join operation to see what might be going awry.
|
|
Is there a way to view the members of an Active Directory group if you aren't a domain admin and can't log into to a domain controller?
Started by Alan Hecht on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
You just won't be able to modify said group memberships... .
You should still be able to use Active Directory Users and Computers to see group memberships, assuming your PC is a member of the domain and you are logged in with a domain account.
|
|
I need to setup 2 domains inside my active directory..
By using the method in this tutorial: http://technet.microsoft.com/en-us/library/cc755059%28WS.10%29.aspx
I can setup a domain but after that when I use dcpromo then i cannot add another domain to...
Started by eavar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
If you need a seperate domain, you could install another DC in a new....
In your link you were trying to create a new forest .
To install another domain, you'll either AD services.
Windows will only allow one domain per server instance.
|
|
Need to launch a new ASP.NET site on this server but need to be joined to our Active Directory domain, anyone know how this is done?
Started by Ryan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The administrator of your domain would normally do that, and if he didn't know how, he'd consult Select the "Computer Name" tab Click....
If you have a Sys or Network Admin, talk to them .
directory, it's most likely not on the domain.
|
|
How do you do a query of an LDAP store by sAMAccountName and Domain? What is the "domain" property named in Active Directory or LDAP terms?
This is what I have for the filter so far. I'd like to be able to add in the domain:
(&(objectCategory=Person)(...
Started by tyndall on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Once you boundYou have to perform your search in the domain:
http://msdn.microsoft.com/en-us/library/ms677934(VS.85).aspx So, basically your ....
Bind to the domain/directory server" ) in order to perform a search in that database.
|
|
Can anyone please help me to get all the domains in Active Directory. I have tried many times, but all the programs are listing only the current working domain.
How can I do this?
Started by Arun on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In order to connect to a different domain, you would....
Using DirectorySearcher you can connect and read the structure of one Active Directory, including the structure (organization units, groups, users, computers, domain controllers).
|
|
So my goal is to be able to add a user from one Active Directory Domain to another group in a separate Active Directory Domain.
I'd like to do this in C#. I know there is a System.DirectoryServices namespace with classes to communicate with AD, but I ...
Started by LeeMobile on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Child.domain.com/cn=group,ou=sample,dc=child,dc=domain,dc=com"); string userDN = "cn=user,ou=sample,dc=domain,dc=com"; group.Properties["member"].Add(userDN); group.CommitChanges();
Probably your.
|