From ec15a4e2d257e397d51fd4da8ff97c4838d651e6 Mon Sep 17 00:00:00 2001 From: Corbin Date: Fri, 13 Sep 2024 17:54:36 -0400 Subject: [PATCH] Add PSTools and win-acme installers --- windows/Install-ConnectSecureAgent.ps1 | 2 +- windows/Install-PsTools.ps1 | 40 ++++++++++++++++++++++++++ windows/Install-WinAcme.ps1 | 40 ++++++++++++++++++++++++++ 3 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 windows/Install-PsTools.ps1 create mode 100644 windows/Install-WinAcme.ps1 diff --git a/windows/Install-ConnectSecureAgent.ps1 b/windows/Install-ConnectSecureAgent.ps1 index 800aab2..373f675 100644 --- a/windows/Install-ConnectSecureAgent.ps1 +++ b/windows/Install-ConnectSecureAgent.ps1 @@ -29,5 +29,5 @@ Write-Host "Log saved at $($AgentInstallPath).log" # Clean up -Write-Host "Removing package download from '$ArchivePath'" +Write-Host "Removing package download from '$AgentInstallPath'" Remove-Item -Path $AgentInstallPath -Force \ No newline at end of file diff --git a/windows/Install-PsTools.ps1 b/windows/Install-PsTools.ps1 new file mode 100644 index 0000000..f150510 --- /dev/null +++ b/windows/Install-PsTools.ps1 @@ -0,0 +1,40 @@ +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12 + +$PackagesPath = 'C:\Packages' +$DestinationPath = 'C:\Program Files\pstools' + +$InstallerUrl = 'https://download.sysinternals.com/files/PSTools.zip' + +$ArchivePath = Join-Path -Path $PackagesPath -ChildPath ($InstallerUrl | Select-String -Pattern "PSTools\.zip").Matches.Value + +# Exit if the application is already installed +if (Test-Path $DestinationPath) { Write-Host 'PSTools is already installed.'; exit } + +# Prep + +# Create the $PackagesPath directory if it doesn't already exist +if (-not (Test-Path -PathType Container $PackagesPath)) { New-Item -ItemType Directory -Path $PackagesPath | Out-Null } + +# Download + +Write-Host "Downloading application..." +# Use Legacy WebClient for compatibility +(New-Object Net.WebClient).DownloadFile($InstallerUrl, $ArchivePath) + +# Extract + +Write-Host "Extracting application..." +Expand-Archive -Path $ArchivePath -DestinationPath $DestinationPath -Force +Write-Host "Application extracted to $DestinationPath" + +# Install + +Write-Host "Installing application..." + +# Add the DestinationPath to Path system environment variable +[Environment]::SetEnvironmentVariable("Path", $env:Path + ";$DestinationPath\", [System.EnvironmentVariableTarget]::Machine) + +# Clean up + +Write-Host "Removing package download from '$ArchivePath'" +Remove-Item -Path $ArchivePath -Force \ No newline at end of file diff --git a/windows/Install-WinAcme.ps1 b/windows/Install-WinAcme.ps1 new file mode 100644 index 0000000..f0ad303 --- /dev/null +++ b/windows/Install-WinAcme.ps1 @@ -0,0 +1,40 @@ +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12 + +$PackagesPath = 'C:\Packages' +$DestinationPath = 'C:\Program Files\win-acme' + +$InstallerUrl = 'https://github.com/win-acme/win-acme/releases/download/v2.2.9.1701/win-acme.v2.2.9.1701.x64.pluggable.zip' + +$ArchivePath = Join-Path -Path $PackagesPath -ChildPath ($InstallerUrl | Select-String -Pattern "(win-acme\.v?(?:\d\.?)+\.x64\.pluggable\.zip)").Matches.Value + +# Exit if the application is already installed +if (Test-Path $DestinationPath) { Write-Host 'win-acme is already installed.'; exit } + +# Prep + +# Create the $PackagesPath directory if it doesn't already exist +if (-not (Test-Path -PathType Container $PackagesPath)) { New-Item -ItemType Directory -Path $PackagesPath | Out-Null } + +# Download + +Write-Host "Downloading application..." +# Use Legacy WebClient for compatibility +(New-Object Net.WebClient).DownloadFile($InstallerUrl, $ArchivePath) + +# Extract + +Write-Host "Extracting application..." +Expand-Archive -Path $ArchivePath -DestinationPath $DestinationPath -Force +Write-Host "Application extracted to $DestinationPath" + +# Install + +Write-Host "Installing application..." + +# Add the DestinationPath to Path system environment variable +[Environment]::SetEnvironmentVariable("Path", $env:Path + ";$DestinationPath\", [System.EnvironmentVariableTarget]::Machine) + +# Clean up + +Write-Host "Removing package download from '$ArchivePath'" +Remove-Item -Path $ArchivePath -Force \ No newline at end of file