...
Make sure that you have opened the RDP port on your instance and have retrieved the password for Admin. For instructions, click here.
Open the Remote Desktop Connection app by pressing the Windows key and searching for “Remote Desktop Connection” or “RDP”.
For
Computer
, enter the floating IP address of your Windows instance. ForUser Name
, enter your username (likely to be “Admin”). Then click Connect.In the popup window, enter your password.
Open an Elevated Command Prompt, by clicking on the Windows Start Button, typing
Command Prompt
, and clickingRun as administrator
.Add new user account with the following command, replacing
username
andpassword
with your desired credentials.Code Block net user username password /ADD
...
Assigning Admin Permissions [Optional]
Add user to
administrators
group.Code Block net localgroup administrators username /add
To see all users under the
administrators
group, run the following:Code Block net localgroup administrators
To remove user from
administrators
group, use the command below:Code Block net localgroup administrators username /delete
Delete User
To delete a user, please do the following:
Code Block net user username /DELETE
User Setup Using Start Menu and Settings
...
Make sure that you have opened the RDP port on your instance and have retrieved the password for Admin. For instructions, click here.
Open the Remote Desktop Connection app by pressing the Windows key and searching for “Remote Desktop Connection” or “RDP”.
For
Computer
, enter the floating IP address of your Windows instance. ForUser Name
, enter your username (likely to be “Admin”). Then click Connect.In the popup window, enter your password.
Right-click on the Windows Start Button and click on Computer Management.
Expand
Local Users & Groups
and right-click onUsers
. Choose New User.Enter the relevant information like username and password.
Uncheck
User must change password at next logon
and checkPassword never expires
and then click Create.
...
Assigning Admin Permissions [Optional]
Add the username to Administrators by clicking on Groups under
Local Users & Groups
.Double click on Administrators group to get the following window:
Click Add and type the username you wish to add in the box under
Enter the object names to select
. Click Apply and then OK.The username should be listed as one of the members now.
To remove the Admin permissions from a user, double-click on
Administrators
.Under
members
, select the user to remove. Click Remove.Then click Apply and OK.
Delete User
Double click on the Users folder under
Local Users and Groups
.Right-click on the user you wish to delete. Click Delete.
You will be asked to confirm the deletion of this user. If certain, click Yes.
Connect to RDP as the New Admin User
...