Posted On July 5, 2019

Install AWS Command Line Interface on Windoze

kimconnect 0 comments
blog.KimConnect.com >> Codes , Virtualization >> Install AWS Command Line Interface on Windoze
Obtain AWS Access Key:

Log into AWS > click on your User Name > My Security Credentials > acknowledge any warnings > click on Access keys (access key ID and secret access key) > download key

Install AWS-CLI:

Assuming that Chocolatey is installed on the system:

choco install awscli -y
Configure AWS-CLI
& "C:\Program Files\Amazon\AWSCLI\bin\aws.exe" configure
Example output:
PS C:\Windows\system32> & "C:\Program Files\Amazon\AWSCLI\bin\aws.exe" configure
AWS Access Key ID [None]: AKIAHONDA_TOYOTA_BEST_BRANDS
AWS Secret Access Key [None]: VCLE_WASSUP_BRO_WERE_GOING_HI_TECH_NOW
Default region name [None]: us-west-1
Default output format [None]: json
Check Version
PS C:\Windows> & "C:\Program Files\Amazon\AWSCLI\bin\aws.exe" --version
aws-cli/1.16.193 Python/3.6.0 Windows/10 botocore/1.12.183
Add AWS-CLI into Environmental Path
$awsCliPath="C:\Program Files\Amazon\AWSCLI\bin"
$env:Path += ";$awsCliPath"

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: How to Convert Multi-Line Texts Into an Array of Strings

Significance: we often run into situations where a list of items (such as usernames, computernames,…

Setting Up Python on a Windows Machine

# Install Visual C++ 14choco install vcredist2017 -y# Install Python 3.8choco install python --version=3.8 -y#…

JavaScript: Wikipedia Viewer

Demo: Wikipedia Viewer HTML Code: <body><div class="container"> <h1>Wikipedia Search</h1> <p>A Free Code Camp Intermediate Project</p><br/>…