This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can trysigning in orchanging directories.
Access to this page requires authorization. You can trychanging directories.
Windows has a built-in SSH client and SSH server that you can use in Windows Terminal. In this tutorial, you'll learn how to set up a profile in Windows Terminal that uses SSH. Note that this feature is in preview.
The latest builds of Windows 10 and Windows 11 include a built-in SSH server and client that are based on OpenSSH, a connectivity tool for remote sign-in that uses the SSH protocol. OpenSSH encrypts all traffic between client and server to eliminate eavesdropping, connection hijacking, and other attacks.
By default, the OpenSSH client and OpenSSH server are located in the directory:C:\Windows\System32\OpenSSH. You can also check that it is present in Windows Settings > System > Optional features, then search for "OpenSSH" in your added features.

For more information on configuring OpenSSH, seeOpenSSH Server configuration for Windows.
You can start an SSH session in your command prompt by executingssh user@machine and you will be prompted to enter your password. You can create a Windows Terminal profile that does this on startup by adding thecommandline setting to a profile in yoursettings.json file inside thelist of profile objects.
{ "name": "user@machine ssh profile", "commandline": "ssh user@machine"}For more information, see:
To specify the starting directory for a ssh session invoked by Windows Terminal, you can use this command:
{ "commandline": "ssh -t bob@foo \"cd /data/bob && exec bash -l\""}The-t flag forces pseudo-terminal allocation. This can be used to execute arbitrary screen-based programs on a remote machine, e.g. when implementing menu services. You will need to use escaped double quotes as bourne shell derivatives don't do any additional parsing for a string in single quotes.
For more information, see:
Was this page helpful?
Need help with this topic?
Want to try using Ask Learn to clarify or guide you through this topic?
Was this page helpful?
Want to try using Ask Learn to clarify or guide you through this topic?