- Your server is running Windows Server 2019.
- Your client is using PuTTY or OpenSSH Client, and you know how to connect to servers and set private keys.
- Your server user is an administrator.
- Install the OpenSSH Server feature.
- Go to Settings › Apps › Apps & features › Manage optional features.
- Select + Add a feature.
- Select OpenSSH Server, then select Install.
- Use
services.msc
to start the OpenSSH SSH Server service and set its startup type to Automatic.- The OpenSSH Authentication Agent is not needed for SSH servers, so you can leave it stopped.
- Try logging in with your username and password. This will show that the service, firewall rules, and host key were automatically set up.
- Set up public-key–based authentication.
- If you don't already have a public-private keypair, you can generate one with PuTTYgen.
- Choose ED25519 as the type of key to generate.
- Click Generate and move your mouse around the window for a second.
- Save the private key file (
*.ppk
) somewhere PuTTY can read it. - Copy the "Public key for pasting into OpenSSH authorized_keys file" at the top of the window.
- Save the OpenSSH public key string to the end of the correct authorized keys file, depending on whether you want to log in to the server over SSH as an administrator user or not.
- For administrators, this file is
%PROGRAMDATA%\ssh\administrators_authorized_keys
. - For non-administrators, this file is
%USERPROFILE%\.ssh\authorized_keys
. - Multiple entries must be separated by newlines.
- Ensure the filename has no extension.
- For administrators, this file is
- For administrative users, set the
administrators_authorized_keys
file permissions.- Disable permissions inheritance, copying existing entries.
- Remove the
Authenticated Users
entry. - Once you're done, the access control list should only allow full access to
SYSTEM
and theAdministrators
group, and the owner should beAdministrators
.
- If you don't want any users to be able to attempt to log in with a password over SSH, you can set
PasswordAuthentication no
in%PROGRAMDATA%\ssh\sshd_config
and restart thesshd
service.
- If you don't already have a public-private keypair, you can generate one with PuTTYgen.
- If you want to change the default shell from Command Prompt to PowerShell, you can set a registry value:
New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShell -Value "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -PropertyType String -Force
See also PowerShell remoting.