Open SSH from the browser
Learn how to open SSH connections directly from the browser
SSH Link handler for Windows
Step 1: Install OpenSSH
OpenSSH_for_Windows_7.7p1, LibreSSL 2.6.5# Install the OpenSSH Client
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0Step 2: Download the wrapper script
$url = "https://gist.githubusercontent.com/thorstenkramm/b25a2c09ca7414595d48d1db581833fc/raw/1fecf170378390eebe778209a8b88972d6893657/ssh-protocol-handler.ps1"
$file = "$env:LOCALAPPDATA\ssh-protocol-handler.ps1"
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest -Uri $url -OutFile $fileStep 3: Register the script as URL handler
Step4: Activate the new handler

Last updated
Was this helpful?