An Azure backup service that provides built-in management at scale.
Thanks for the update, WorkloadBackupExtensionInstallationTimedOut specifically means the AzureBackupWindowsWorkload extension could not complete its installation within the allowed time. This is typically caused by network connectivity issues, Guest Agent problems, conflicting extensions, or resource constraints on the VM.y
The extension installation requires the VM to download packages from Azure endpoints. A timeout usually means connectivity is blocked or slow.
From inside the VM (RDP), run the following in PowerShell:
# Test connectivity to required Azure Backup endpoints
Test-NetConnection -ComputerName management.azure.com -Port 443
Test-NetConnection -ComputerName login.microsoftonline.com -Port 443
Test-NetConnection -ComputerName *.blob.core.windows.net -Port 443
# Test access to Wire Server (required for all extensions)
Test-NetConnection -ComputerName 168.63.129.16 -Port 80
Test-NetConnection -ComputerName 168.63.129.16 -Port 32526
All connections must succeed. If any fail, check:
- NSG rules: Ensure outbound rules allow traffic to service tags:
AzureBackup,AzureActiveDirectory,Storage, andAzureCloud. - Windows Firewall: Ensure it's not blocking outbound HTTPS (TCP 443).
- Proxy: If the VM uses a proxy, ensure Azure endpoints are whitelisted.
- TLS 1.2: Ensure TLS 1.2 is enabled. Verify with:
[Net.ServicePointManager]::SecurityProtocol - If the output does not include
Tls12, enable it via registry or GPO.
Check the Azure VM Guest Agent Health: The Guest Agent is responsible for downloading and installing all extensions. If it's unhealthy, extension installation will time out.
Inside the VM:
- Open services.msc → Look for Windows Azure Guest Agent → Ensure it is Running.
- Check the agent version — ensure it is the latest version.
- Verify the agent log for errors:
C:\WindowsAzure\Logs\WaAppAgent.log
- Also verify COM+ System Application is running (services.msc) and that the Distributed Transaction Coordinator service is running as Network Service account. [learn.microsoft.com]
If the Guest Agent is not responsive:
- Restart the
WindowsAzureGuestAgentservice. - If it persists, consider reinstalling the Guest Agent from: https://go.microsoft.com/fwlink/?LinkID=394789.
Also a failed extension on the VM can block new extension installations.
- Go to Azure Portal > VM > Extensions + applications.
- Check if any extension shows a Failed provisioning state.
- If the
AzureBackupWindowsWorkloadextension is listed in a failed state:- Uninstall it from the Extensions blade.
- Wait for removal to complete, then retry the backup configuration (the extension will reinstall automatically).
- If other extensions are in a failed state, resolve those first — they can block the backup extension installation.
Check VM Resource Utilization: Extension installation can time out if the VM is under high CPU or memory pressure:
- RDP into the VM > Open Task Manager or Resource Monitor.
- Check if CPU is consistently at 90%+ or memory is exhausted.
- If so, consider temporarily scaling up the VM or stopping non-critical workloads before retrying.
The workload backup extension requires.NET Framework 4.6.2 or above.
Check the installed version: (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full").Release
A value of 394802 or higher = .NET 4.6.2+. If lower, upgrade .NET Framework.
After completing the above checks:
- Go to Recovery Services Vault > Backup Infrastructure > Protected Servers > Azure Workload.
- Select the VM and choose Re-register (or re-discover databases).
- Retry the backup configuration.
Hope this helps! If the information was useful, please consider Accepting the answer and upvoting. Feel free to reach out if you need further assistance. Thank you.