Skip to content

Instantly share code, notes, and snippets.

View chipsenkbeil's full-sized avatar
🏠
Working from home

Chip Senkbeil chipsenkbeil

🏠
Working from home
View GitHub Profile
@slardiere
slardiere / openssh.ps1
Last active February 7, 2022 22:31
Install OpenSSH on Windows
Add-Type -AssemblyName System.IO.Compression.FileSystem
function Unzip
{
param([string]$zipfile, [string]$outpath)
[System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath)
}
$url = 'https://github.com/PowerShell/Win32-OpenSSH/releases/latest/'
$request = [System.Net.WebRequest]::Create($url)