-
-
Save sblack4/196e4bb143ce68726d85b545b9c4886d to your computer and use it in GitHub Desktop.
Install version 2 of AWS CLI via PowerShell
This file contains 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
# https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html | |
$dlurl = "https://awscli.amazonaws.com/AWSCLIV2.msi" | |
$installerPath = Join-Path $env:TEMP (Split-Path $dlurl -Leaf) | |
$ProgressPreference = 'SilentlyContinue' | |
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
Invoke-WebRequest $dlurl -OutFile $installerPath | |
Start-Process -FilePath msiexec -Args "/i $installerPath /passive" -Verb RunAs -Wait | |
Remove-Item $installerPath | |
$env:Path += ";C:\Program Files\Amazon\AWSCLIV2" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No need to manually download the msi. msiexec can directly install from an https url.
See https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html
So you just need line 7.