Files
wPublic/bin/Download.ps1
USER 44557356a6 .
2023-09-27 20:49:34 +01:00

9 lines
415 B
PowerShell
Executable File

$source = "https://github.com/PowerShell/Win32-OpenSSH/releases/download/v8.9.1.0p1-Beta/OpenSSH-Win64.zip"
$source = "https://github.com/PowerShell/Win32-OpenSSH/releases/download/v9.2.2.0p1-Beta/OpenSSH-Win64.zip"
$destination = "C:\Packages\OpenSSH-Win64.zip"
Invoke-WebRequest -Uri $source -OutFile $destination
Expand-Archive -LiteralPath $destination -DestinationPath "C:\Packages"
Remove-Item $destination