Windows
Connect to your VPS from Windows with password or SSH key.
Connect from Windows
Windows 10 and later have SSH built in. No extra software needed.
Password Login
- Open Windows Terminal or PowerShell (search in Start menu)
- Run:
ssh root@192.0.2.1Replace 192.0.2.1 with your actual IP.
Custom port:
ssh -p 2222 root@192.0.2.1- First time connecting? Type
yeswhen asked about the host fingerprint - Type your password and press Enter. Nothing shows on screen while you type
SSH Key Login
If you selected an SSH key when installing the OS, password login is disabled. Connect with your key instead.
Generate a Key
Open PowerShell and run:
ssh-keygen -t ed25519Press Enter to accept the default path (C:\Users\YourName\.ssh\id_ed25519). Set a passphrase if you want extra protection, or press Enter to skip.
This creates two files:
id_ed25519: your private key (keep this safe, never share it)id_ed25519.pub: your public key (this goes on the server)
Add the Key to QDE
- Show your public key:
type $env:USERPROFILE\.ssh\id_ed25519.pub- Copy the output
- Go to cloud.qde.com/sshkeys
- Click Add Key, paste the public key, give it a name
- When you install or reinstall an OS, select this key
Connect with Your Key
If you used the default path, SSH finds the key automatically:
ssh root@192.0.2.1If you saved the key elsewhere:
ssh -i C:\path\to\my_key root@192.0.2.1Using a Key Generated in the Control Panel
If you generated a key pair at cloud.qde.com/sshkeys and downloaded it in OpenSSH format:
- Save the
.keyfile toC:\Users\YourName\.ssh\ - Connect:
ssh -i C:\Users\YourName\.ssh\downloaded_key.key root@192.0.2.1PuTTY
If you prefer a graphical client:
Password Login with PuTTY
- Download PuTTY
- Enter your server IP in Host Name
- Set port to
22(or your custom port) - Click Open
- Log in as
rootwith your password
SSH Key Login with PuTTY
If you generated a key in the control panel and downloaded it in PuTTY format (.ppk):
- Open PuTTY
- Enter your server IP and port
- Go to Connection → SSH → Auth → Credentials
- Browse to your
.ppkfile under Private key file for authentication - Go back to Session, click Open
- Log in as
root
Common Mistakes
| Problem | Fix |
|---|---|
ssh not recognized | Use PowerShell, not Command Prompt. Needs Windows 10+ |
| Can't paste password | Right-click to paste in Windows Terminal |
Permission denied (publickey) | Key not on server, or wrong key file. Check the path |
| Wrong IP | Double-check in control panel |