Why I can't see the users that I have created

1

I have created 4 users on Active Directory Users and Computer:

But I can't see the users on my computer management under "local users and groups" nor on my sql server!

So, why I does not have "local users and groups" on "computer management"?

http://imgur.com/5NsqgWB&F467FRZ&OGKV5yn#0

Screenshot

http://imgur.com/5NsqgWB&F467FRZ&OGKV5yn#1

Screenshot

http://imgur.com/5NsqgWB&F467FRZ&OGKV5yn#2

Screenshot

**More Details:**For my Sharepoint server installation on Windows server 2012 I have installed AD and created under AD Users and Computers a new organisational Unit. There I have created four users (which you can see in the first screenshot), all have the same account options: "User cannot change the password" and "Password never expires". The Domain of the Server is "dominaserver". Here are the Properties of the users: imgur.com/EQsBpKa

After that I went to Computer Management where I wanted to see if the users was added. First what me have wondered that ther are no "Local user and groups" as usual. WHY?

Then I ignored that and wanted to see if the sql server has added the new users. And in the folder "Logins" (red marked) also no users as expected?

So my question is: Why on sql-server and computer-management arn't no users allthought I have create them in AD Users and computers

Incer4211

Posted 2015-03-24T23:00:48.687

Reputation: 11

1What do you mean you can't see them in your local users and groups? If the are AD accounts then they are NOT local users/groups. You wouldn't see them there. AD accounts are not local accounts. – Zoredache – 2015-03-24T23:19:37.413

there was other two screenshots if you give me the link (I dont have it anymore) I could explain you – Incer4211 – 2015-03-24T23:24:37.843

I changed the screenshots to links. – Zoredache – 2015-03-24T23:31:31.780

@Zoredache Update – Incer4211 – 2015-03-25T00:00:07.903

Your update doesn't really change anything. The answer is still 'because it is a DC'. – Zoredache – 2015-03-25T00:01:46.210

Answers

0

But I can't see the users on my computer management under "local users and groups"

You appear to be looking at that from your Domain controller. Domain Controllers do not have local accounts. They are Domain controllers.

As for SQL Server I am not familiar what what it should look like normally, but I do know Microsoft strongly discourages running SQL server on a Domain Controller. I would not be surprised at all if you lose some functionality related to account management.

Zoredache

Posted 2015-03-24T23:00:48.687

Reputation: 18 453

0

As others have said, when you create a user in Active Directory Users and Computers, they are domain accounts not local accounts. They won't show up in Local Users and Groups. If the computer or server is domain-joined you can still use those domain accounts to login to the server or computer however.

If you want to utilize a domain account for SQL login, you have to add that account to SQL Logins.

How to add domain account to SQL

  1. Make sure your SQL Server is domain-joined

  2. Open SQL Server Management Studio

  3. Under Security > Logins, right-click and choose New Login...

  1. Select Windows Authentication and click the Search button

  1. Ensure the From this location is set to "Entire Directory" then type the domain login you wish to add

The domain account should now appear under Security > Logins

Josh

Posted 2015-03-24T23:00:48.687

Reputation: 4 746