
Cloud Drops - How Windows Terminal can make YOU productive with Azure
Windows Terminal is available in the Microsoft Store as both a stable release and a preview channel, and also via winget. It unifies all your command-line environments — WSL Ubuntu, PowerShell Core, Windows PowerShell, and Windows Command Prompt — into a single tabbed window. The Azure Cloud Shell profile type uses device code authentication to spin up a managed Azure container with tools like kubectl, Terraform, and the Azure CLI pre-installed, plus a mounted Azure Storage file share to persist your files across sessions.
Custom SSH profiles let you connect directly to Azure virtual machines without leaving Windows Terminal. Enable the optional OpenSSH Client feature in Windows 10 and add an SSH command profile using ssh user@ip; alternatively, prefix with wsl.exe to use a key stored in your WSL environment. Once saved, each profile appears as an option in the drop-down, giving you a fully unified, multi-environment terminal workflow on a single Windows machine.
Related Content

Cloud Drops - Installing, Upgrading and Auto-Upgrading the Azure CLI
The Azure CLI provides cross-platform command-line management of Azure resources from Windows, macOS, Linux, Docker containers, and Azure Cloud Shell. This Cloud Drop demonstrates az login, az account set, az group list, az upgrade, and the az config set auto-upgrade.enable=yes command for keeping your CLI automatically up to date.

Cloud Drops - Git 101 - Why use Git, and how to get started
Git is a distributed version control system where every developer holds a complete copy of the repository and its history locally, enabling offline work and fast branching. This Cloud Drop covers git init, git add, git commit, git status, git log, git push, git pull, and git clone, plus VS Code's built-in Git integration and the Git Credential Manager for authenticating against GitHub and other remote hosts.

Cloud Drops - How does Git work behind the scenes?
Git stores all version history as compressed objects — commits, trees, and blobs — inside the .git folder. This Cloud Drop walks through the .git directory structure, uses git cat-file -p to inspect commit, tree, and blob objects, and shows how refs map human-readable branch names to commit hashes, including remote-tracking refs created when pushing to GitHub.