Skip to content

I Have A PC

Tech Tips and How-To's Since 2010
Menu
  • Home
    • Tech
    • Apps
    • Misc
    • Linux
    • Windows
  • Giveaways and Freebies
  • Free Stuff
  • Sitemap
  • Copyright Policy
  • Cookie Policy
  • Contact
  • About
HomeWindows10Use SSH Directly From Windows 10 Command Prompt By Installing OpenSSH Client

Use SSH Directly From Windows 10 Command Prompt By Installing OpenSSH Client

September 26, 2018

Windows 10 Fall Creators Update comes with OpenSSH client and server. This is useful when managing remote servers via SSH without using a third party software like Putty.

To install OpenSSH client in Windows 10 :

First, access Windows settings (Win key + I) > Apps

accessing Apps from Windows 10 settings

The from Apps & Features, click on Manage optional features.

managing optional features in Windows 10

Next, choose Add a Feature and scroll down to OpenSSH Client. Then select Install.

OpenSSH client installed

Alternatively, you can search and install this directly from Windows PowerShell too. Launch PowerShell in Admin mode (right click Windows start button)

using Windows PowerShell Admin mode

Then, type the following (in this example, the client is already installed) :

listing apps named OpenSSH by using Powershell

[cc lang=”bash”]

Get-WindowsCapability -Online | ? Name -like ‘OpenSSH*’

[/cc]

This will query and list packages starting with the term OpenSSH. (Similar to running apt commands in Ubuntu/Mint for searching packages and installing them.).

Then install the client :

[cc lang=”bash”]

Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0

[/cc]

Once installed, launch command prompt or Powershell and try using ssh command.

ssh can be used from Windows command prompt or Powershell

It will be available and ready to use. You can now use SSH to remote login to other systems directly from Windows 10. It can be also used with rsync to transfer a lot of data quickly. A brief guide on how to do that can be found in an earlier article here.

remote login using ssh from Windows 10

Happy SSH-ing.

Tags:how to install openssh client in Windows 10, remote login using ssh from Windows 10, ssh in Windows 10, windows 10 fall creators update

Related Posts

3 Useful System TuneUp Utilities For Windows PC

How To Convert Restricted PDF Files To Word Documents

Windows 8 Metro Start screen

Download Windows 8 Developer Preview Edition

About The Author

admin

  • Bluesky
  • Email
  • Facebook
  • Twitter
  • YouTube

Free E-books

Linux Command-Line Cheatsheet
Linux Command-Line Basics
Linux Shell Scripting Primer

Free GWS Trial

Try Google Workspace free for 14 days

Archives

  • Bluesky
  • Email
  • Facebook
  • Twitter
© 2026 I Have A PC | WordPress Theme by Superb WordPress Themes
Back to Top ↑