
How to Change Your RDP Password on Windows Server
Change a Windows Server remote desktop password four ways: Ctrl+Alt+End, Computer Management, PowerShell and CMD, plus password policy hardening tips.
How to Change Your RDP Password on Windows Server
If you run a remote desktop server, rotating the RDP password regularly is one of the cheapest security wins available. Here are four ways to do it from inside an active session.
Method 1: Ctrl+Alt+End
Inside an RDP session, Ctrl+Alt+Del is captured by your local machine. To send it to the remote server, use Ctrl+Alt+End instead:
- With the Remote Desktop window focused, press Ctrl + Alt + End
- Click Change a password
- Type your current password in the Old password field
- Type the new password in the New password field
- Repeat it in Confirm password
- Press Enter or click the arrow button
💡 If the key combination is awkward on your keyboard, the On-Screen Keyboard works just as well: Start → Accessories → On-Screen Keyboard
Method 2: Computer Management
- Right click the Start menu → Computer Management
- In the left pane go to Local Users and Groups → Users
- Right click the user you want to change
- Click Set Password
- Click Proceed
- Enter and confirm the new password
Method 3: PowerShell
Changing the Current User’s Password
# Change the password for the current user
$NewPassword = Read-Host -AsSecureString "Enter the new password"
Set-LocalUser -Name "Administrator" -Password $NewPasswordOne Line Version
# Set the Administrator password directly
net user Administrator "YourNewStrongPassword123!"Changing Another User’s Password
# Change the password for a specific user
net user UserName "NewPassword123!"Method 4: Command Prompt
:: Change a password
net user Administrator *
:: This prompts you to type the new password twiceRules for a Strong Password
For a Windows Server account:
| Rule | Minimum | Recommended |
|---|---|---|
| Length | 8 characters | 16 or more |
| Uppercase | 1 | 3 or more |
| Lowercase | 1 | 3 or more |
| Digits | 1 | 3 or more |
| Symbols | 1 | 2 or more (!@#$%^&*) |
Examples
✅ W4!te_B1l1s!m_2026#Srv
✅ Sunucu$Guvenligi_99!Abc
✅ MyS3rv3r#Is$Pr0tected!!
❌ 123456
❌ password
❌ admin123
Setting a Password Policy
Through Group Policy
- Win + R → type
gpedit.msc - Computer Configuration → Windows Settings → Security Settings → Account Policies → Password Policy
- Configure these settings:
| Setting | Recommended value |
|---|---|
| Minimum password length | 12 characters |
| Password must meet complexity requirements | Enabled |
| Maximum password age | 90 days |
| Minimum password age | 1 day |
| Enforce password history | 5 passwords |
Through PowerShell
# Minimum password length
net accounts /minpwlen:12
# Maximum password age (90 days)
net accounts /maxpwage:90
# Password history (the last 5 cannot be reused)
net accounts /uniquepw:5Extra RDP Hardening
1. Change the Default RDP Port
# Change the RDP port to 13389
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -Name "PortNumber" -Value 13389
# Add a firewall rule for the new port
New-NetFirewallRule -DisplayName "Custom RDP Port" -Direction Inbound -Protocol TCP -LocalPort 13389 -Action Allow
# Restart the server
Restart-Computer2. Enable Network Level Authentication
# Enable NLA
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -Name "UserAuthentication" -Value 13. Set an Account Lockout Policy
# Lock the account for 30 minutes after 5 failed attempts
net accounts /lockoutthreshold:5
net accounts /lockoutduration:30
net accounts /lockoutwindow:30🔒 Every White Bilişim VDS plan includes DDoS protection. Combine that with the settings above and your RDP surface gets very hard to reach.
Common Problems
Ctrl+Alt+End Does Nothing
- Make sure the RDP window is in full screen mode
- Some keyboards require the Fn key alongside it
- Fall back to the On-Screen Keyboard from the Start menu
“The password does not meet the requirements”
- Check that the password satisfies the complexity rules
- Make sure it is different from your previous password
- Check the minimum length requirement
I Cannot Connect After Changing the Password
- Clear the saved password in your RDP client
- Delete the old credentials from Windows Credential Manager
Conclusion
Rotating the RDP password is a basic but genuinely effective habit. Pair it with a strong password, a non default port and an account lockout policy, and brute force attacks stop being a realistic threat.
👉 For a secure Windows Server VDS, look at Xeon Enterprise VDS or Ryzen Premium VDS.