Install latest version 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/awscli-install-windows.html | |
$dlurl = "https://s3.amazonaws.com/aws-cli/AWSCLI64PY3.msi" | |
$installerPath = Join-Path $env:TEMP (Split-Path $dlurl -Leaf) | |
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\AWSCLI\bin" |
Awesome. thanks
Thank you brocoli
Great Thanks. Maybe add
$env:Path += ";C:\Program Files\Amazon\AWSCLI\bin"
Great Thanks. Maybe add
$env:Path += ";C:\Program Files\Amazon\AWSCLI\bin"
@lomungo Thanks, I just added it.
Adding $ProgressPreference = 'SilentlyContinue'
to the beginning of the script can help download times a LOT if you are accessing the host through RDP etc
V2
$dlurl = "https://awscli.amazonaws.com/AWSCLIV2.msi"
$installerPath = Join-Path $env:TEMP (Split-Path $dlurl -Leaf)
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
Nice