Convertir un servidor Windows 2019 en servidor de SSH

Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0 
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
Install-Module -Force OpenSSHUtils -Scope AllUsers
Set-Service -Name ssh-agent -StartupType ‘Automatic’
Set-Service -Name sshd -StartupType ‘Automatic’
Start-Service ssh-agent
Start-Service sshd
ssh username@hostname_or_IP_address
ssh username@domain@hostname_or_IP_address