installs.westek

This is where I keep the essential steps for installing, configuring or in general really borking things up. Use at your own risk.

OpenSSH on Win10

These are the powershell commands I use to install OpenSSH on a Windows 10 workstation. You need to run powershell as administrator for this to work.

1

Check to see if OpenSSH Client/Server are installed. If not proceed.

Get-WindowsCapability -Online | ? name -like "openssh*"

2

Install OpenSSH Client/Server.

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

3

Start the OpenSSH service.

Start-service sshd

4

Make sure the service is set to automatically start on boot.

Set-Service -Name sshd -StartupType 'Automatic'

5

Make sure the firewall rule was created to allow port 22 for SSH.

Get-NetFirewallRule -Name *ssh*

This website was built with Mobirise site themes