There was a problem loading the comments.

How to Add and Manage Users on Windows Server

Support Portal  »  Knowledgebase  »  Viewing Article

  Print

Quick answer: Manage Windows Server users in lusrmgr.msc. Create a user, then add them to Remote Desktop Users for RDP access without admin rights, or Administrators only if they truly need it. Keep the number of administrators small and disable rather than delete departed accounts.

Managing user accounts on a Windows VPS lets you give people the access they need without sharing the Administrator password. This guide covers creating users, granting RDP access, and controlling privileges.

Open the user management console

Run lusrmgr.msc to open Local Users and Groups (available on most Windows Server editions), or use Server Manager > Tools > Computer Management. Both manage the same accounts.

Create a new user

Under Users, right-click and choose New User. Set a username and a strong password. Decide on the password options - for a service account, "Password never expires" may be appropriate; for a person, require a periodic change. Command-line equivalent:

net user jsmith StrongPass123! /add

Grant Remote Desktop access

A new user cannot log in over RDP until they are in the right group. Add them to Remote Desktop Users:

net localgroup "Remote Desktop Users" jsmith /add

This grants RDP without giving administrative rights - the safer default for most accounts.

Grant administrative rights only when needed

If a user genuinely needs to install software or change system settings, add them to Administrators:

net localgroup Administrators jsmith /add

Keep the number of administrators small. Most day-to-day accounts should be standard users.

Disable, rename, or remove accounts

When someone leaves, disable their account rather than deleting it immediately so you keep an audit trail, then remove it later. Renaming the built-in Administrator account (to something non-obvious) reduces automated attacks that target that exact name.

Review regularly

Periodically check the user list and group membership. An unfamiliar account, especially in Administrators or Remote Desktop Users, can be a sign of compromise and should be investigated.

Frequently asked questions

How do I give a user RDP access without admin rights?
Add them to the Remote Desktop Users group, not Administrators.

Should I delete a departed user's account?
Disable it first to keep an audit trail, then remove it later.

On a SoftSys managed Windows VPS our team can set up role-appropriate accounts and access policies for you, so your team has exactly the access it needs and nothing more.


Share via
Did you find this article useful?  

Related Articles

Tags

© Softsys Hosting