Updated Install Win32 OpenSSH (markdown)

Mike MacCana 2015-12-26 13:28:19 +00:00
parent 58cde04437
commit 4b6c15619c

@ -1,3 +1,5 @@
## Install Win32 OpenSSH
1. Download [Zip file](https://github.com/PowerShell/Win32-OpenSSH/releases/download/11_09_2015/OpenSSH-Win32.zip) 1. Download [Zip file](https://github.com/PowerShell/Win32-OpenSSH/releases/download/11_09_2015/OpenSSH-Win32.zip)
* Extract contents to `C:\Program Files\OpenSSH-Win32` * Extract contents to `C:\Program Files\OpenSSH-Win32`
* Start Powershell as Administrator * Start Powershell as Administrator
@ -13,5 +15,9 @@
* Install and run daemon as NT Service running as Local System * Install and run daemon as NT Service running as Local System
* `./sshd.exe install` * `./sshd.exe install`
* `net start sshd` * `net start sshd`
* To uninstall - `net stop sshd` ; `./sshd.exe uninstall`
* Make the service start on boot (PowerShell): `Set-Service sshd -StartupType Automatic` * Make the service start on boot (PowerShell): `Set-Service sshd -StartupType Automatic`
## Uninstall Win32 OpenSSH
`net stop sshd`
`./sshd.exe uninstall`