---
title: 'How to add a new user in Windows Server 2012, 2016, 2019 | Zomro'
description: 'When several users need to work on the server, and at the same time, then you need to add an additional user, or users.'
image: 'https://dx86q6oq7ry0e.cloudfront.net/uploads/media/blog/a48@server-panel.net/2022/10/01/1667160747_1.png'
---

![opened image]()

  * [Zomro](https://zomro.com/)
  * [FAQ](https://zomro.com/blog/faq/)
  * How to add a new user in Windows Server 2012, 2016, 2019 



# How to add a new user in Windows Server 2012, 2016, 2019

27-10-2022

After you have installed Windows Server 2012, 2016 or 2019 on a VDS, only the Administrator account is available there.  
  
But when several users need to work on the server, and at the same time, then you need to add an additional user, or users. Also, in this case, it is necessary to take into account that a terminal server is installed on the server, and the required number of licenses for an RDP connection. How to install and configure a terminal server, you can see in this article.  
  
To add a second user, connect to the server with your Administrator credentials. Then go to Computer Management. This can be done by right-clicking on the Start menu and selecting Computer Management from the context menu.  
  
![How to add a new user in Windows Server 2012, 2016, 2019 - 1](https://dx86q6oq7ry0e.cloudfront.net/uploads/media/blog/a48@server-panel.net/2022/10/01/1667160747_1.png)  
Or press the Win + R combination and in the Run window type compmgmt.msc and click OK.  
  
![How to add a new user in Windows Server 2012, 2016, 2019 - 2](https://dx86q6oq7ry0e.cloudfront.net/uploads/media/blog/a48@server-panel.net/2022/10/01/1667160832_2.png)  
Now in the Computer Management window, go to Users and Groups => Users and select New User from the top Action menu.  
  
![How to add a new user in Windows Server 2012, 2016, 2019 - 3](https://dx86q6oq7ry0e.cloudfront.net/uploads/media/blog/a48@server-panel.net/2022/10/01/medium_1667160837_3.png)  
In the New User window that opens, you must enter the username in the User Name column that you will use to log into the server. In the Full Name item, you can enter the full name that will be visible on the welcome screen. You can leave nothing in the Description field.  
In the Password and password confirmation field, enter the password that you will use for this user.  
  
![How to add a new user in Windows Server 2012, 2016, 2019 - 4](https://dx86q6oq7ry0e.cloudfront.net/uploads/media/blog/a48@server-panel.net/2022/10/01/1667160845_4_1.png)  
You can clear the User must change password at next logon checkbox if you do not need to change the password when the user first connects.  
  
  
We leave the User cannot change password checkbox so that the user cannot change the password.  
Leave the Password never expires checkbox the same if there is no need to change the password. Account is disabled Enables/disables the user's ability to connect/login to the server. We uncheck the box.  
To create a user, click Create.  
  
![How to add a new user in Windows Server 2012, 2016, 2019 - 5](https://dx86q6oq7ry0e.cloudfront.net/uploads/media/blog/a48@server-panel.net/2022/10/01/1667160856_4_2.png)  
Now for the created user, you must provide the necessary rights to connect to the server. To do this, right-click and select Properties.  
  
![How to add a new user in Windows Server 2012, 2016, 2019 - 6](https://dx86q6oq7ry0e.cloudfront.net/uploads/media/blog/a48@server-panel.net/2022/10/01/1667160959_5.png)  
To allow the created user access via RDP to this server, on the Remote control tab, you must set the appropriate permissions, as shown in the illustration below.  
  
![How to add a new user in Windows Server 2012, 2016, 2019 - 7](https://dx86q6oq7ry0e.cloudfront.net/uploads/media/blog/a48@server-panel.net/2022/10/01/1667160953_6.png)  
But in order to give the user Administrator rights, he must be added to the appropriate group. On the Member of tab  
  
click Add… and select Advanced… in the group selection window, then the Find Now button in the group selection window. Select the Administrators group and click OK.  
  
![How to add a new user in Windows Server 2012, 2016, 2019 - 8](https://dx86q6oq7ry0e.cloudfront.net/uploads/media/blog/a48@server-panel.net/2022/10/01/1667161017_7.png)  
Now, in the same way, you can create the required number of users on your server.  


**The same actions, only through Power Shell**

  
Let's create user User2, with description Manager and password QWErty1! (Don't create such easy passwords!!!)
    
    
    $PASSWORD= ConvertTo-SecureString –AsPlainText -Force -String QWErty1!; New-LocalUser -Name "User2" -Description "Manager" -Password $PASSWORD

  
  
Accordingly, instead of User2, use your username, and a password of at least 12 characters.  
  
Now let's add this user to the group we need.
    
    
    Add-LocalGroupMember -Group "Remote Desktop Users" -Member "User2"

  
To the Remote Desktop Users group  
  
To add to the Administrators group, use the following command:
    
    
    Add-LocalGroupMember -Group "Administrators" -Member "User2"

Similar articles:

[How to install an SSL certificate on Windows Server](https://zomro.com/blog/faq/278-kak-ustanovit-ssl-sertifikat-v-windows-server) [How to install the FileGator file manager on Centos 7. (Apache-Nginx)](https://zomro.com/blog/faq/380-how-to-install-the-filegator-file-manager-on-centos-7-apache-nginx) [How to create and delete an additional domain in cPanel?](https://zomro.com/blog/faq/190-kak-sozdat-i-udalit-dopolnitelnyj-domen-v-cpanel) [How to connect custom ISO image to dedicated server](https://zomro.com/blog/faq/234-kak-podkljuchit-svoj-obraz-iso-k-vydelennomu-serveru) [How to raise OpenSSH on Windows 2016](https://zomro.com/blog/faq/405-how-to-raise-openssh-on-windows-2016)

[ Premium Cloud VPS from €7.95/mon ](/vps)
