Questions tagged [domaincontroller]

An Domain Controller (DC) is a Windows server which responds to security authentication requests (logging in, checking permissions, etc.) within the Windows Server Active Directory domain.

For a complete description, see https://en.wikipedia.org/wiki/Domain_controller

231 questions
0
votes
0 answers

DomainContect is raising "Logon failure: unknown user name or bad password."

I have the following code inside my asp.net mvc web application to retrieve the Active directory user names:- public List GetADUsers(string term=null) { List results = new List(); using (var…
0
votes
1 answer

TFS 2012 to 2013 Upgrade + domain change advice needed

We're going to upgrade our TFS 2012 to TFS 2013 in the coming month - which also means we're going to update our SQL Server 2008 R2 cluster to 2012. Furthermore - our TFS is currently hosted in a different domain from our company default domain and…
Jochen van Wylick
  • 5,303
  • 4
  • 42
  • 64
0
votes
1 answer

Grails groovy delete old records

In the following code how can i delete all the old stores record assoicated with an author and insert a new one Domain class class Store { Date dateCreated Date lastUpdated static belongsTo = [author: Author] static constraints = { } …
Rajeev
  • 44,985
  • 76
  • 186
  • 285
0
votes
1 answer

'DOMAIN\Domain Users' group becomes 'SERVER\None' in Security Tab

I'm setting up a Domain Controller and another server for Certificates. When I create a Certificate Template and go to the Security tab, I have a group called "Server\None" instead of "Domain\Domain Users". All other default groups appear on that…
0
votes
1 answer

folder hierarchy and user permissions in windows

We have a server machine having Windows 2012 Server installed on it. Same machine is being used for Domain Controller, Active Directory, Organizational Unit, Groups and Group Policies. Please check attached image here For University, we created…
0
votes
1 answer

Event ID 3 / Source: Print

I came across an Event error on System. Event ID:3 Source: Print Description: Printer HP LaserJet on [domainname] (from IT01) in session 2 was deleted. The IT01 is my PC at work, and I have not done any printing today. Also there are 6 printers…
0
votes
1 answer

How to get a ssl certificate for java application from samba4 DC server?

We have a mail system which can modify active directory users/orgnization_unit via ldaps URL. It needs a server certificate stored in java keystore to make a ssl/tls connection. Now I want to use samba4 as domain controller instead of Windows…
LiuYan 刘研
  • 1,614
  • 1
  • 16
  • 29
0
votes
1 answer

DNS lookup failing

I have a primary and secondary domain controller that we use as our DNS servers. Users are getting mixed results with accessing websites. Some work fine, others are giving an error: Network Access Message: The website cannot be found Explanation:…
deweycooter
  • 82
  • 1
  • 2
  • 9
0
votes
1 answer

Can I have users of my PHP/SQL/HTML/Javascript application login through my windows domain controller

I currently have an application I have built that the users login by retrieving the username and password from a MS SQL table with user info, we were thinking that once we implement a Windows Server Domain Controller, it would be better to let the…
ScottC
  • 452
  • 8
  • 25
0
votes
1 answer

Just rebuild a server that was receive event ID 467

I had a server (AD DC, 2008r2) a few weeks ago that was giving error event ID 467 Log Name: Directory Service Source: NTDS ISAM Date: 5/3/2013 9:46:10 AM Event ID: 467 Task Category: Database Corruption Level: …
0
votes
1 answer

Query on System.DirectoryServices.ActiveDirectory

I am using Domain object in System.DirectoryServices.ActiveDirectory namespace. Whenever I query domain details using Domain.GetCurrentDomain or Domain.GetDomain, it establishes connection with domain controller. This connection can be seen with…
0
votes
2 answers

-eq and -ne give me the same results

Why do the following two command, with the only difference the -eq and -ne operator give me my list of DCs? Get-ADComputer -Filter {(operatingsystem -like "*server*") -AND (PrimaryGroup -eq "CN=Domain Controllers,CN=Users,DC=domain,DC=com") }…
Josiah
  • 2,666
  • 5
  • 30
  • 40
0
votes
1 answer

Visual Studio remote debugging from host domain controller to remote workgroup server

My development machine is a 2008 R2 x64 domain controller (it has evolved to that point through attrition on my now one-machine domain, and will not change for the near future). The ASP.NET MVC app I wish to debug is deployed to a 2008 R2 x64…
0
votes
1 answer

How to pull list of DC in a forest/domain using MVC with razor and C#

Query : My project home page should have list of domain controllers as of now for one selected forest with a specified domain example.com , with + sign, if we expand + sign, we should be able to see LIST OF CONNECTED replicated servers in each DC…
user1686215
0
votes
1 answer

MSMQ on a domain controller defaults to workgroup mode, how to switch to Domain mode?

I have a Windows Server 2008 machine acting as Domain Controller for a test domain and I have installed MSMQ on this server including the "Message Queue Server", "Directory Services Integration" and "Message Queueing Triggers" features. I've also…