# Copyright (c) HashiCorp, Inc. # SPDX-License-Identifier: BUSL-1.1 # Unzip Boundary CLI to the same directory $destination = Split-Path -Path ${boundary_cli_zip_path} Expand-Archive -Path ${boundary_cli_zip_path} -DestinationPath $destination -Force # Add Boundary CLI to PATH $existingPath = [Environment]::GetEnvironmentVariable( "Path", [EnvironmentVariableTarget]::Machine ) $newPath = $existingPath + ";" + $destination [Environment]::SetEnvironmentVariable( "Path", $newPath, [EnvironmentVariableTarget]::Machine ) # Install chocolatey (package manager) powershell -c "irm https://community.chocolatey.org/install.ps1|iex" # Refreshes env to get choco on path $env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User") $env:ChocolateyInstall = Convert-Path "$((Get-Command choco).Path)\..\.." Import-Module "$env:ChocolateyInstall/helpers/chocolateyInstaller.psm1" refreshenv # install mremoteng choco install mremoteng -y