top of page

How to install AWSCLI in Windows

Updated: May 23


Using Choco


choco install awscli

Using MSI Installer

  1. Download the latest AWS CLI MSI installer for Windows from the AWS website.

  2. Double-click the downloaded MSI file to start the installation wizard.

  3. Follow the on-screen instructions to complete the installation.

Alternatively, you can execute the following msiexec command from the Windows terminal:

msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi

Verify the installation by running the following command:

aws --version
32 views0 comments

Recent Posts

See All

DevOps (Development and Operations) and SRE (Site Reliability Engineering) are two approaches or philosophies that aim to improve software development and operations, but they have different focuses a

Question: Write a Linux command to list all files and directories in the current directory. Answer: ls Question: How would you create a new directory named "my_project" in the home directory of the cu

bottom of page