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

Check a List of Servers to Find Currently Stopped Autorun Services

$username = (Get-ADDomain).name+'\USERNAME' $Password = 'PASSWORD' $pass = ConvertTo-SecureString -AsPlainText $Password -Force $cred = New-Object…

PowerShell: Reset Windows 10 to Default Factory Settings

The easiest (GUI) method: systemreset -cleanpc The automated method: # Experimental code: not working yet…

Build a JavaScript Calculator

Demo: https://blog.kimconnect.com/wp-content/projects/calculator.html HTML Code: <link href='//fonts.googleapis.com/css?family=Bungee' rel='stylesheet'><div class='container'> <div id='calculator'> <!-- TITLE --> <div id='title'…