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.

  • 0 Корисниците го најдоа ова како корисно
Дали Ви помогна овој одговор?

Понудени резултати

Installing SteamCMD on your Windows VPS

SteamCMD is Valve's command-line tool for downloading and updating dedicated server files...

How to change your Windows VPS Administrator password

You can change the main Windows VPS login password from the VPS control panel. This is useful if...

How to open Windows Firewall ports on your VPS

Windows Firewall controls which inbound connections are allowed into your Windows VPS. If you...

How to open and use PowerShell on a Windows VPS

PowerShell is the main command-line tool for managing a Windows VPS. You can use it to install...

How to connect to a Windows VPS with Remote Desktop

Remote Desktop is the normal way to manage a Windows VPS. It opens a desktop session so you can...