Teach
Azure offers several management interfaces so you can administer resources however you prefer — visually or as code.
Management interfaces
- Azure portal — web-based graphical UI for visually creating, configuring, and monitoring resources. Best for exploration and one-off tasks.
- Azure CLI — cross-platform command-line tool using simple
azcommands; ideal for scripting and automation (Bash-friendly). - Azure PowerShell — command-line via cmdlets (
Azmodule); great for Windows admins and PowerShell scripts. - Azure Cloud Shell — a browser-based shell (Bash or PowerShell) preauthenticated and preinstalled with the CLI and tools — no local setup.
- Azure mobile app — monitor resources, check health, and run quick actions from a phone.
CLI and PowerShell are functionally similar; choose by scripting preference. Cloud Shell lets you run either from anywhere.
Azure Advisor
Azure Advisor is a free, personalized recommendation service that analyzes your configuration and usage, then suggests improvements across five categories:
- Cost — reduce spend (e.g., resize/shut down idle VMs).
- Security — improve posture (integrates with Microsoft Defender for Cloud).
- Reliability — improve resilience and availability.
- Operational excellence — process and best-practice improvements.
- Performance — speed and responsiveness.
Quick decision checkpoints
- Exploring or doing a one-off change? Use the portal.
- Automating or scripting? Use CLI or PowerShell.
- No local tools installed? Use Cloud Shell.
- Want proactive improvement tips? Check Azure Advisor.
Pick the interface that fits the task, and let Advisor guide optimizations.
Practice
Practice 1
Which Azure interface is a web-based graphical UI best suited for exploring and configuring resources visually?
Practice 2
An engineer wants to automate resource creation with cross-platform `az` commands in a Bash script. Which tool fits?
Practice 3
A user has no Azure tools installed locally but needs an authenticated Bash or PowerShell session from a browser. The best option is:
Practice 4
Which service provides free, personalized recommendations across cost, security, reliability, operational excellence, and performance?
Practice 5
Azure Advisor recommends shutting down or resizing an underused VM. This recommendation falls under which category?