← Back to all products

Azure Administrator (AZ-104) Guide

$49

Complete AZ-104 study material covering identity, governance, storage, compute, and networking with lab exercises.

📁 5 files🏷 v1.0.0
YAMLJSONMarkdownShellAzure

📄 Product Preview

Try the interactive reader and demo tools below, or get the full product with all content unlocked.

📖 Interactive Reader (Free Preview) ⚙ Try Demo Tools 📦 Download Free Sample

📁 File Structure 5 files

azure-administrator-guide/ ├── examples ├── lab-exercises ├── practice-questions ├── quick-reference └── study-guide

📖 Documentation Preview README excerpt

Azure Administrator (AZ-104) — Complete Study Guide

Comprehensive study guide covering all 5 exam domains, 45 practice questions with explained answers, az CLI examples, ARM templates, lab exercises, and an exam-day cheatsheet for the Microsoft Azure Administrator Associate certification.

Exam Facts at a Glance

DetailValue
Exam CodeAZ-104
Number of Questions40–60 (mix of multiple-choice, drag-drop, case studies)
Duration120 minutes (includes time for labs if present)
Passing Score700 (on a scale of 100–1000)
Cost$165 USD
PrerequisitesNone required (6+ months Azure admin experience recommended)
Validity1 year (renewable via free online assessment)
FormatProctored at Pearson VUE or online

Who This Is For

  • System administrators managing on-premises infrastructure who are moving to Azure
  • Cloud engineers who need the Azure Administrator credential for their role
  • IT professionals preparing for a career in cloud administration
  • DevOps engineers wanting to formalize their Azure knowledge
  • Developers who need to understand Azure infrastructure for full-stack work

What's Inside

Study Guide (5 Domain Files)

FileDomainWeight
study-guide/01-manage-identities-governance.mdManage Azure Identities and Governance20–25%
study-guide/02-implement-manage-storage.mdImplement and Manage Storage15–20%
study-guide/03-deploy-manage-compute.mdDeploy and Manage Azure Compute Resources20–25%
study-guide/04-implement-manage-networking.mdImplement and Manage Virtual Networking15–20%
study-guide/05-monitor-maintain-resources.mdMonitor and Maintain Azure Resources10–15%

Practice Questions

FileDescription
practice-questions/questions.md45 realistic multiple-choice questions across all 5 domains
practice-questions/answer-key.mdFull answer key with detailed explanations

Code Examples

FileDescription
examples/az-cli-commands.sh50+ az CLI commands for common admin tasks
examples/arm-template-vm.jsonARM template: deploy a virtual machine with NSG and public IP
examples/arm-template-vnet.jsonARM template: deploy a virtual network with subnets and NSG

Lab Exercises

FileDescription
lab-exercises/lab-01-resource-groups-rbac.mdCreate resource groups, assign RBAC roles, apply policies
lab-exercises/lab-02-virtual-networks.mdBuild VNets, subnets, peering, and NSG rules
lab-exercises/lab-03-storage-and-vms.mdCreate storage accounts, deploy VMs, configure disks

... continues with setup instructions, usage examples, and more.

📄 Code Sample .sh preview

examples/az-cli-commands.sh #!/bin/bash # ============================================================================ # Azure CLI Commands — AZ-104 Exam Prep Reference # ============================================================================ # 50+ az CLI commands organized by exam domain. # Replace placeholder values (rg-example-prod, vm-web-01, etc.) with your own. # ============================================================================ # ============================================================================ # IDENTITY & GOVERNANCE # ============================================================================ # --- Entra ID Users --- # Create a user az ad user create \ --display-name "Jane Doe" \ --user-principal-name jane@acmecorp.onmicrosoft.com \ --password "YOUR_TEMP_PASSWORD_HERE" # List all users az ad user list --output table # Delete a user az ad user delete --id jane@acmecorp.onmicrosoft.com # --- Groups --- # Create a security group az ad group create \ --display-name "Engineering Team" \ --mail-nickname engineering-team # Add a member to a group az ad group member add \ --group "Engineering Team" \ --member-id "USER_OBJECT_ID" # --- RBAC --- # Assign Contributor role at resource group scope az role assignment create \ --assignee jane@acmecorp.onmicrosoft.com \ --role "Contributor" \ --resource-group rg-example-prod # List role assignments az role assignment list --resource-group rg-example-prod --output table # Remove a role assignment az role assignment delete \ --assignee jane@acmecorp.onmicrosoft.com \ --role "Contributor" \ # ... 246 more lines ...
Buy Now — $49 Back to Products