Find us on social media
PasswordSecurityAdmin3 min read
Change the Administrator password
Change the default Administrator password to secure your Windows Server VPS.
Changing the default password is the first security step after receiving your Windows Server VPS. Use a strong, unique password.
Method 1 — Using the command line
Open PowerShell as Administrator and run:
powershell
net user Administrator NewSecureP@ssw0rd!Replace NewSecureP@ssw0rd! with your chosen password.
Method 2 — Using Computer Management
- Right-click Start → Computer Management
- Navigate to Local Users and Groups → Users
- Right-click Administrator → Set Password
- Click Proceed on the warning
- Enter and confirm the new password
Method 3 — Using Ctrl+Alt+Del
- In your RDP session, press
Ctrl+Alt+End(equivalent to Ctrl+Alt+Del in RDP) - Click Change a password
- Enter the old password and new password twice
- Click the arrow to confirm
Password requirements
Windows Server enforces password complexity by default:
- Minimum 8 characters (we recommend 16+)
- Must contain characters from at least 3 of these categories:
- Uppercase letters (A-Z)
- Lowercase letters (a-z)
- Numbers (0-9)
- Special characters (!@#$%^&*)
- Cannot contain the username or parts of the full name
Using PowerShell for a secure random password
powershell
Add-Type -AssemblyName System.Web
$password = [System.Web.Security.Membership]::GeneratePassword(20, 4)
Write-Host "Generated password: $password"
net user Administrator $passwordImportant notes
- Save the new password in a password manager
- If you lose the password, you can reset it from the Baires Host panel
- Update any saved RDP connections with the new password
- Consider enabling account lockout policy for additional security
Was this guide helpful?