AZ-305 Design business continuity solutions • Set 7
AZ-305 Design business continuity solutions Practice Test 7 — 15 questions with explanations. Free, no signup.
You are reviewing a recovery plan for Azure Site Recovery. The exhibit shows a snippet of the recovery plan configuration. What is the purpose of the script action defined in the exhibit?
Refer to the exhibit.
```json
{
"properties": {
"recoveryPlan": {
"groups": [
{
"groupType": "Shutdown",
"startGroupActions": [],
"endGroupActions": []
},
{
"groupType": "Boot",
"startGroupActions": [
{
"actionType": "ScriptAction",
"scriptPath": "https://myaccount.blob.core.windows.net/scripts/run-post-failover.ps1",
"failoverDirections": ["PrimaryToRecovery"],
"failoverTypes": ["TestFailover", "UnplannedFailover"]
}
],
"endGroupActions": []
}
]
}
}
}
```