How to Change or Reset Your Windows Password (RDP)
This guide explains how to change your rdp's Windows password or reset it if you’ve lost access.
A. Via online panel
- Go to Customer Dashboard than choose: Services > My Services and choose product where you want to reset your password
- Click valid product, scroll down and go to "Settings" tab
- Type new password in "New Password" box and retype it in box below it
- Click change password
- Next click the Grey button
6. When the color and shape will change to green triangle click it once again
7. Wait till RDP reboots and Voila!
Note: Please don't click restart button for this process!
B. Inside a Remote Desktop Session (RDP)
Use Ctrl + Alt + End instead of Ctrl + Alt + Delete — it works inside RDP sessions.
If your keyboard doesn't have an End key:
- Press Win + R, type
osk
, and press Enter to open the On-Screen Keyboard - Hold Ctrl + Alt on your physical keyboard and click Del on the virtual keyboard
Alternative Methods (Inside RDP)
Run any of the following commands inside the remote desktop to open the Windows Security dialog:
' VBScript:
Set objShell = CreateObject("shell.application")
objShell.WindowsSecurity
:: Run command:
explorer.exe shell:::{2559a1f2-21d7-11d4-bdaf-00c04f60b9f0}
# PowerShell:
(New-Object -COM Shell.Application).WindowsSecurity()
C. Computer Management (Local Accounts)
- Right-click This PC → Manage
- Navigate to System Tools → Local Users and Groups → Users
- Right-click the user account → Set Password
- Enter the new password and confirm
D. Control Panel
- Press Win + R, type
control
, and press Enter - Go to User Accounts → Change account password
E. Command Prompt or PowerShell (as Administrator)
:: Command Prompt:
net user username newpassword
:: Or (prompt for secure input):
net user username *
# PowerShell (Local User):
Get-LocalUser "Administrator" | Set-LocalUser -Password (Read-Host "Enter new password" -AsSecureString)
F. Active Directory (Domain Users)
- Press Win + R, type
dsa.msc
, and press Enter - Find the user, right-click → Reset Password
# PowerShell with AD Module:
Set-ADAccountPassword -Identity username -NewPassword (Read-Host "Enter new password" -AsSecureString) -Reset
Summary
Scenario | Recommended Method |
---|---|
Change your own password (you know the old one) | Ctrl + Alt + End (RDP) |
Reset a password (forgotten) | Panel |
If you need help with any of the steps, please open a support ticket.