install ssh in windows powershell fix errors | php sshd not working

Опубликовано: 04 Октябрь 2024
на канале: linux-syr
283
6

after installing sshd server and the sshd agent, neither the service nor the services are displayed in the services server/client.
Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
Start-Service sshd
Set-Service sshd -StartupType Automatic
or
Uninstall the OpenSSH Client
Remove-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
Uninstall the OpenSSH Server
Remove-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
choco install OpenSSH -Y
Start-Service sshd
Set-Service sshd -StartupType Automatic