Tag: AWS CLI

  • How to Set Environment Variables in PowerShell

    To get environment variables in PowerShell, we can use Get-ChildItem env: to list all the environment variables and $env: to return the value of a specific environment variable. This blog post should help explain this as well as how to set new values for Environment Variables. An environment variable is a value that is stored…

    read more


  • How to Manage S3 Buckets with AWS CLI

    This is a post on how to help manage S3 Buckets with AWS CLI, and to help explain some local Operating System (OS) considerations when running such commands. First of all, you will need to be authenticated to your AWS Account and have AWS CLI installed. I cover this in previous blog posts:# How to…

    read more


  • How to Install & Configure AWS CLI on Ubuntu

    This post should help guide you through the process of installing and configuring AWS CLI (version 1) on Ubuntu (20.04). The following areas are covered in this demo:– Updating Local Packages– Installing AWS CLI on Ubuntu– Checking Installed AWS CLI Version– Configuring AWS Profile– Running AWS CLI Commands Updating Local Packages To start, update your…

    read more