Understand Azure Backup, Site Recovery, vault choices, failover, reporting, and Network Watcher troubleshooting for AZ-104.
Recovery questions on AZ-104 are about preparedness, not optimism. Microsoft expects administrators to know which vault or recovery feature fits the problem and how to validate that a backup or failover plan will actually work.
The official objectives include creating a Recovery Services vault, creating an Azure Backup vault, configuring backup policies, performing backup and restore operations, configuring Azure Site Recovery, performing failover to a secondary region, configuring backup reports and alerts, and using Azure Network Watcher and Connection Monitor.
Backup protects recoverable copies of data or workloads. Site Recovery focuses on replication and failover for continuity scenarios. They can support the same business service, but they solve different recovery goals. Network Watcher sits beside these tools as an operational troubleshooter when reachability or path behavior is the real problem.
The most frequent misses are confusing backup with replication, ignoring restore testing, and overlooking the difference between vault types. Candidates also waste time troubleshooting network symptoms manually when Network Watcher or Connection Monitor could narrow the problem faster.
| Need | Strongest first choice | Why |
|---|---|---|
| Recover deleted or damaged workload data | Azure Backup | Focuses on protected copies and restore workflows |
| Keep a workload ready to fail over to another region | Azure Site Recovery | Focuses on replication and continuity |
| Inspect path or reachability behavior across the network | Network Watcher or Connection Monitor | Operational troubleshooting tools, not recovery stores |
| Standardize retention and schedule behavior | Backup policy | Makes protection repeatable |
Microsoft now exposes both Recovery Services vaults and Backup vaults in Azure Backup. For AZ-104, the key thing is not memorizing every workload matrix. It is knowing that they are different vault types and that Recovery Services vaults remain central for many familiar VM and Site Recovery scenarios, while Backup vaults support newer Azure Backup workloads. If a production design depends on vault choice, verify workload support in the live Microsoft docs before implementing it.
Restore is about recovering protected data or a workload copy back into service. Failover is about shifting service operation to a replicated target when the primary environment is impaired. AZ-104 often hides this distinction inside outage language. If the question is about continuity during a regional event, think failover. If it is about recovering protected content after deletion, corruption, or routine loss, think restore.
flowchart LR
F["Failure or outage"] --> Q{"What happened?"}
Q -->|Deleted, corrupted, or missing data| B["Azure Backup restore"]
Q -->|Primary region impaired| SR["Azure Site Recovery failover"]
B --> R["Recovered data or workload copy"]
SR --> S["Secondary-region service"]
F -.if path or reachability is unclear.-> N["Network Watcher / Connection Monitor"]
The exam distinction is simple once the failure mode is clear:
This is the kind of operational step AZ-104 expects you to recognize even if the exam presents it as a portal workflow.
1# Create a Recovery Services vault
2az backup vault create -g RG -n ops-vault -l eastus
3
4# Protect a virtual machine with the default policy
5az backup protection enable-for-vm -g RG -v ops-vault --vm vm-app-01 --policy-name DefaultPolicy
What matters here is the sequence:
At this point you have the full first-pass AZ-104 scaffold. Use the study plan, cheat sheet, and resources to tighten the areas that still feel slow.