β Windows Terminal (Recommended)
π‘ Modern, powerful terminal app from Microsoft
Why itβs good
β Tabs (PowerShell, Azure CLI, bash, WSL)
β Split panes
β Custom themes and fonts
β Works well with Azure CLI + azcopy + Git
Install
- Open Microsoft Store
- Search Windows Terminal
- Install
Then run:
az login
az --version
π§ WSL (Windows Subsystem for Linux)
π‘ A Linux environment inside Windows
Why itβs great
β True Linux shell
β Works well with scripts and tools (bash, curl, jq)
β Same experience as on cloud/dev servers
Install
In PowerShell:
wsl --install
Then inside WSL (Ubuntu):
sudo apt update
sudo apt install azure-cli azcopy
Now Azure CLI runs just like on a Linux VM.
π¦ Azure Cloud Shell
π‘ Zero install β runs in browser or Visual Studio Code
Pros
β Always up to date
β Comes with Azure CLI + azcopy
β Accessible from any machine
Access:
β‘ https://shell.azure.com/
OR inside Azure Portal (top-right > Cloud Shell)
π PowerShell with Azure CLI
Good if you like PowerShell scripting.
Just install Azure CLI and open PowerShell or Windows Terminal (PowerShell tab):
az login
az --version
Pro tip: Use the Azure PowerShell module too:
Install-Module -Name Az -Scope CurrentUser
π§° Which One Should You Use for BEST Experience?
| Tool | CLI Experience | Ease of Install | Best For |
|---|---|---|---|
| Windows Terminal | βββββ | ββββ | Daily dev work |
| WSL (Ubuntu) | βββββ | βββ | Dev/scripting |
| Azure Cloud Shell | ββββ | βββββ | Quick commands / no install |
| PowerShell + Azure CLI | ββββ | ββββ | Windows scripting |
π Best overall: Windows Terminal + Azure CLI
π How to Install Azure CLI on Windows 11
Step 0 β Install Windows Terminal (optional but recommended)
- Microsoft Store β Windows Terminal
- Launch it
Step 1 β Install Azure CLI
In Windows Terminal (PowerShell tab):
winget install Microsoft.AzureCLI
or download from:
π https://learn.microsoft.com/cli/azure/install-azure-cli-windows
Step 2 β Verify Installation
az --version
π Installing AzCopy Side-by-Side
AzCopy is separate from Azure CLI.
Recommended install (Windows)
- Download from:
https://aka.ms/downloadazcopy-v10-windows
- Extract to folder, e.g.
C:\azcopy
- Add folder to PATH (so PowerShell can run
azcopy)
π§ Tips for Smooth CLI Experience
π Auto-completion
In PowerShell with Azure CLI:
Install-Module -Name PSReadLine -Force
π Log in once
az login
This will open the browser and authenticate your Azure account.
π Use profiles in Windows Terminal
Create tabs:
- Azure CLI
- PowerShell
- WSL Ubuntu
Easily switch between contexts.
π§ͺ Quick Test After Setup
In Windows Terminal:
az account show
az group list
If you see JSON output β CLI is working.
β‘ Optional Workflow Boost
Combine tools:
- Windows Terminal
- WSL (Ubuntu)
- Cloud Shell for ephemeral tasks
This gives you the best CLI + script + automation experience on Windows 11.

Add to favorites