From a39c9b594b3368eed699d102c1a6a72031a05b12 Mon Sep 17 00:00:00 2001 From: Kurtis Date: Sun, 2 Nov 2025 01:03:30 +1000 Subject: [PATCH] Update Added Git and openssh installation --- vargscript.ps1 | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/vargscript.ps1 b/vargscript.ps1 index f63d696..72dd855 100644 --- a/vargscript.ps1 +++ b/vargscript.ps1 @@ -146,6 +146,16 @@ function Install-VSCode { winget install Microsoft.VisualStudioCode } +function Install-Git { + Write-Host "Installing GIT" + winget install Git.Git +} + +function Install-SSHCLient { + Write-Host "Installing OpenSSH Client" + Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0 +} + function Show-InteractiveMenu { param ( [string]$Title = "Main Menu", @@ -193,6 +203,8 @@ do { Install-WindowsTerminal Config-WindowsTerminal Install-VSCode + Install-Git + Install-SSHCLient Pause } "2" {