Skip to content

Instantly share code, notes, and snippets.

@daveRendon
Last active January 15, 2024 18:28
Show Gist options
  • Select an option

  • Save daveRendon/2562d3b9bd3c7fc9ef080cec45bbd73b to your computer and use it in GitHub Desktop.

Select an option

Save daveRendon/2562d3b9bd3c7fc9ef080cec45bbd73b to your computer and use it in GitHub Desktop.
cloudbrink-install
# URL of the installer file
$url = "https://cloudbrink.blob.core.windows.net/scripts/BrinkAgent-latest.msi"
# Location to save the installer file
$output = "C:\Users\azureuser\Downloads\BrinkAgent-latest.msi"
# Create a WebClient object
$wc = New-Object System.Net.WebClient
# Download the installer file
$wc.DownloadFile($url, $output)
# Run the installer
Start-Process -FilePath "C:\Users\azureuser\Downloads\BrinkAgent-latest.msi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment