Posted in

SSH demon for Windows / Jak zainstalować demona SSH na Windows

Just open Power Shell as a Administrator and pastle these commands, it just download and install SSH deamon on your machine:
Invoke-WebRequest https://github.com/PowerShell/Win32-OpenSSH/releases/download/0.0.24.0/OpenSSH-Win64.zip -OutFile “$env:TEMPsshd.zip” -UseBasicParsing mkdir c:sshd cd $env:TEMP copy .sshd.zip c:sshd cd c:sshd Expand-Archive sshd.zip cd sshd cd OpenSSH-Win64 [Environment]::SetEnvironmentVariable(“Path”, $env:Path + “;C:sshdsshdOpenSSH-Win64”, [EnvironmentVariableTarget]::Machine) .install-sshd.ps1 .ssh-keygen.exe -A .FixHostFilePermissions.ps1 -Confirm:$false get-service ssh*|Set-Service -StartupType “Automatic” get-service ssh*|Start-Service get-service ssh*
It could be used in:
  • Windows Server GUI/Core
  • Windows Nano Server
  • Windows in Container
  • Windows 7-10

Microsoft Certified Trainer, Office 365, AWS, Azure and Cloud Expert-Architect. In the IT world for over than 20 years.

Apart from the main area of Microsoft Azure expert in the field of infrastructure servers Windows Server 2003-2019, Microsoft Active Directory, Hyper-V Private Cloud, IIS, System Center, SQL.

Private Cloud, System Center, Hyper-V, Open Stack Expert and all Microsoft products Expert. Linux Server administrator.

My Azure community projects:

https://mazeball.azurewebsites.net/
https://github.com/MariuszFerdyn?tab=repositories

More