To connect to a Windows VPS via RDP, copy the server's public IP address from your Raff dashboard, open a Remote Desktop client, enter the IP address, sign in with Administrator, enter the password you set during VM creation, and accept the first-time certificate warning.
For most users, the connection takes less than a minute.
The fastest path is:
1. Open your RDP client. 2. Enter the Windows VPS public IP. 3. Use username: Administrator. 4. Enter the Windows VPS password. 5. Accept the certificate warning. 6. You are connected to Windows Server.
If the connection fails, the cause is usually one of four things:
- the VM is not running yet;
- the password or username is wrong;
- your network blocks outbound TCP 3389;
- the server firewall or RDP service is not reachable.
This guide shows how to connect from Windows, macOS, Linux, iPhone, iPad, and Android, then how to fix the most common RDP errors.
What RDP is
RDP stands for Remote Desktop Protocol.
It lets you open a graphical Windows desktop session on a remote Windows Server. Instead of working directly on a physical machine, you control the Windows VPS over the network from your local computer.
For Windows VPS users, RDP is used for:
- first server login;
- installing software;
- managing Windows Server;
- configuring IIS, SQL Server, ERP, accounting apps, or business software;
- running admin tools;
- checking logs;
- changing firewall rules;
- setting up RDS when more users are needed.
RDP is not the same as a web dashboard.
The dashboard creates and manages the VM. RDP connects you to the Windows desktop inside that VM.
What you'll need
Before starting, prepare:
- a Raff Windows VPS with status Running;
- the VM's Public IPv4 address;
- the Administrator password you set during VM creation;
- an RDP client on your local device;
- outbound access to TCP port
3389from your network; - 5 minutes for the first connection.
Windows has a built-in RDP client.
macOS, iOS, iPadOS, and Android use Microsoft's Windows App or another RDP client.
Linux users can use Remmina or FreeRDP.
RDP connection settings
Use these settings for a standard Raff Windows VPS connection:
| Field | Value |
|---|---|
| Computer / PC name / Server | Your VPS public IP address |
| Username | Administrator |
| Password | The password set during VM creation or reset later |
| Port | 3389 unless changed manually |
| Authentication | Password-based Windows login |
| Certificate warning | Expected on first connection |
Example:
Computer: 203.0.113.42 Username: Administrator Password: your saved Administrator password
If Administrator does not work in your RDP client, try:
.\Administrator
or:
<server-ip>\Administrator
For example:
203.0.113.42\Administrator
Step 1 — Get your IP address and password ready

Raff handles Windows credentials differently from providers that email a generated password.
You set the Administrator password during VM creation.
Raff does not display that password afterward, so save it in a password manager before closing the creation flow.
To find your Windows VPS IP address:
- Log in to the Raff dashboard.
- Go to Compute → All Virtual Machines.
- Click your Windows VM.
- Copy the Public IPv4 address from the VM details page.
The default username is:
Administrator
unless you changed it during setup.
If you forgot the Administrator password
If you forgot the password, reset it from the VM details page.
In the Raff dashboard:
- Open the Windows VM details page.
- Go to Actions.
- Find Reset Password.
- Confirm the reset.
- Use the new password after the reset completes.
If reset does not work, contact Raff support with the VM name and account email.
Do not keep retrying random passwords. Repeated failed login attempts can trigger lockout behavior depending on Windows policy.
Step 2 — Connect from Windows
Windows includes Remote Desktop Connection by default.
No install is needed.
- Press
Win + R. - Type:
mstsc
- Press Enter.
- In Computer, paste your Windows VPS public IP address.
- Click Show Options.
- In User name, enter:
Administrator
- Click Connect.
- Enter the Administrator password.
- Accept the certificate warning.
You should now see the Windows Server desktop.
Save the RDP connection on Windows
After entering the IP and username:
- Click Show Options.
- Go to the General tab.
- Click Save As.
- Save the
.rdpfile somewhere safe.
Next time, double-click the .rdp file.
Do not store the password inside an .rdp file shared with other people unless your organization has a safe credential process.
Step 3 — Connect from macOS
On macOS, use Microsoft's Windows App from the Mac App Store.
- Install Windows App from the Mac App Store.
- Open Windows App.
- Click +.
- Choose Add PC.
- In PC name, paste your Windows VPS public IP.
- Add a user account:
- Username:
Administrator - Password: your Administrator password
- Username:
- Save the connection.
- Double-click the saved PC.
- Accept the certificate warning.
Windows App supports common RDP features such as clipboard sharing, display settings, and folder redirection depending on your client settings.
For normal Windows VPS administration, it is the recommended path on macOS.
Step 4 — Connect from Linux
The easiest Linux RDP client is usually Remmina.
Install Remmina:
# Ubuntu / Debian sudo apt update sudo apt install remmina remmina-plugin-rdp
For Fedora:
sudo dnf install remmina remmina-plugins-rdp
For Arch:
sudo pacman -S remmina freerdp
Then connect:
- Open Remmina.
- Click + to create a new profile.
- Set Protocol to
RDP - Remote Desktop Protocol. - Set Server to your Windows VPS public IP.
- Set Username to
Administrator. - Enter the password.
- Click Save and Connect.
If you prefer the command line, use FreeRDP:
xfreerdp /v:203.0.113.42 /u:Administrator /p:'YourPasswordHere' /cert:tofu /size:1920x1080
Replace the IP and password.
/cert:tofu means trust on first use. Avoid /cert:ignore for normal use because it skips certificate validation entirely.
Step 5 — Connect from iPhone, iPad, or Android
Use Microsoft's mobile Windows App.
On iPhone or iPad:
- Install Windows App from the App Store.
- Open the app.
- Tap +.
- Choose Add PC.
- Enter the Windows VPS IP address.
- Add the
Administratoraccount and password. - Save and connect.
- Accept the certificate warning.
On Android:
- Install Windows App from Google Play.
- Tap +.
- Add the Windows VPS IP address.
- Add the
Administratorlogin. - Save and connect.
Mobile RDP is useful for quick admin tasks.
For serious server work, use a desktop or laptop with a keyboard and larger screen.
Step 6 — Accept the certificate warning
The first RDP connection usually shows a certificate warning.
This is normal for a new Windows VPS.
Why it happens:
- the server uses a self-signed RDP certificate by default;
- your local computer has never trusted this server before;
- the certificate name may not match the IP address.
If the IP address is correct and you are connecting to your own VM, accept the warning.
Do not ignore certificate warnings if you are connecting over an unknown network, using a suspicious IP, or if the warning appears unexpectedly after a long period of normal use.
For production RDS environments, you can later configure trusted certificates, RD Gateway, and stronger access controls.
