first commit

This commit is contained in:
USER
2023-01-17 16:07:43 +00:00
commit a3c450b2ce
8 changed files with 143 additions and 0 deletions

7
bin/Download.ps1 Executable file
View File

@ -0,0 +1,7 @@
$source = "https://github.com/PowerShell/Win32-OpenSSH/releases/download/v8.9.1.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