How to add another user account on a Windows VPS

Print
  • 0

Adding a separate Windows user is useful when more than one person needs access to the VPS. Do not share the Administrator password unless the other person genuinely needs full control.

Create a normal user first, then only add administrator permissions if that person needs to install software, change firewall rules, or manage services.

 

Add a local user with PowerShell

  1. Connect to the Windows VPS with Remote Desktop.
  2. Open PowerShell as Administrator.
  3. Create the user:
net user GameAdmin StrongPasswordHere /add

 

Allow Remote Desktop login

net localgroup "Remote Desktop Users" GameAdmin /add

 

Make the user an administrator

Only do this if the user needs full admin rights:

net localgroup Administrators GameAdmin /add

Windows VPS PowerShell showing a new user added to Remote Desktop Users and Administrators

 

Test the new user

  1. Open a new Remote Desktop connection.
  2. Sign in as the new user.
  3. Confirm the user can access only what they need.

 

Which group should you use?

GroupUse it when
Remote Desktop UsersThe user only needs to sign in by RDP.
AdministratorsThe user needs full control over software, services, firewall, and system settings.

Most extra users should not be administrators unless they are actively managing the VPS.

 

Remove a user

net user GameAdmin /delete

Use strong passwords and remove accounts that are no longer needed.


Was this answer helpful?

Related Articles

« Back

Follow us on Social Media

Stay in the loop! Follow our social media accounts and stay up-to-date with the latest news, announcements, tips & tricks and behind-the-scenes insights!