Updated How to retrieve links to latest packages (markdown)

Manoj Ampalam 2018-07-20 21:45:02 -07:00
parent 22fea017e2
commit 7e2f0139a6

@ -1,6 +1,7 @@
Follow these PowerShell steps to retrieve links to the latest Win32-OpenSSH packages:
```powershell
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$url = 'https://github.com/PowerShell/Win32-OpenSSH/releases/latest/'
$request = [System.Net.WebRequest]::Create($url)
$request.AllowAutoRedirect=$false