Add PowerShell commands for how to set the service to start at boot time.

Trick van Staveren 2015-12-12 13:17:27 +00:00
parent 65d237e1cf
commit ebade13f49

@ -13,4 +13,4 @@
* `sshd.exe install`
* `net start sshd`
* To uninstall - `net stop sshd` ; `sshd.exe uninstall`
* If you want the service to run on every reboot, you must set the service to start automatically in Service Control Manager. `sshd.exe install` sets the service to manual start, not automatic startup.
* Make the service start on boot (PowerShell): `Set-Service sshd -StartupType Automatic`