Last active
January 15, 2024 18:28
-
-
Save daveRendon/2562d3b9bd3c7fc9ef080cec45bbd73b to your computer and use it in GitHub Desktop.
cloudbrink-install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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