nerdexam
MicrosoftMicrosoft

AZ-104 · Question #584

AZ-104 Question #584: Real Exam Question with Answer & Explanation

This question tests knowledge of Azure App Service backup configuration, specifically how to set up scheduled backups and exclude specific folders from those backups.

Submitted by ashley.k· Mar 4, 2026Deploy and manage Azure compute resources

Question

Hotspot Question You have an Azure App Service app named WebApp1 that contains two folders named Folder1 and Folder2. You need to configure a daily backup of WebApp1. The solution must ensure that Folder2 is excluded from the backup. What should you create first, and what should you use to exclude Folder2? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Answer:

Options

  • __typehotspot
  • variantdropdown

Explanation

This question tests knowledge of Azure App Service backup configuration, specifically how to set up scheduled backups and exclude specific folders from those backups.

Approach. To configure a daily (scheduled) backup of an Azure App Service, you must first create an Azure Storage Account (and a container within it) because App Service backups require a storage account as the destination. To exclude Folder2 from the backup, you use a file named '_backup.filter' placed in the wwwroot directory of the app - this is a special text file where you list the paths of folders or files to be excluded from the backup. The _backup.filter file should contain the path to Folder2 (e.g., \site\wwwroot\Folder2), and Azure App Service will honor these exclusions during the backup process. So: first create a Storage Account (with a Blob container), and use the _backup.filter file to exclude Folder2.

Concept tested. Azure App Service backup configuration - specifically the prerequisite of a Storage Account for scheduled backups and the use of the _backup.filter file to exclude specific directories from App Service backups.

Reference. https://docs.microsoft.com/en-us/azure/app-service/manage-backup - Azure App Service backup and restore documentation, which describes the _backup.filter file for exclusions and the requirement for an Azure Storage Account.

Topics

#Azure App Service backup#Backup exclusion#App Service configuration

Community Discussion

No community discussion yet for this question.

Full AZ-104 PracticeBrowse All AZ-104 Questions