An Azure native disaster recovery service. Previously known as Microsoft Azure Hyper-V Recovery Manager.
Hello Krupavani Gundraju, For physical-server DR to Azure, Azure Site Recovery treats a server the same whether it's domain-joined or workgroup (non-domain-joined) — ASR does not require Active Directory for the replication itself. The "workgroup" detail only affects two practical things:
- Credentials — you supply a local admin account (e.g.,
.\AdministratororServerName\localadmin) for Mobility Service push-install, instead of a domain account. - Post-failover identity/auth — apps that relied on the workgroup machine's local accounts will keep working, but you should plan how users/apps will reach the failed-over VM in Azure (DNS/IP, local logins).
So: treat them as ordinary physical Windows/Linux servers and follow the physical-server ASR flow.
Two important caveats to set expectations up front
- No failback to physical. After a failover to Azure, a physical server cannot fail back to an on-prem physical machine — you can only fail back to a VMware VM (or just run it in Azure and rebuild on-prem manually). This is a hard ASR limitation; make sure stakeholders accept it. Physical server DR (limitations)
- Use the Modernized appliance, not "Enable replication (Classic)." The AI answer on the thread points to the Classic VMware/physical flow; for new deployments Microsoft recommends the Modernized ASR replication appliance. Also note: create a NEW Recovery Services vault for the appliance — don't reuse one already protecting other items. Physical server architecture – Modernized
End-to-end process for workgroup physical servers
1. Plan & prerequisites
- Define RTO(maximum downtime)/RPO(acceptable data loss), list the servers, confirm each meets Azure VM + replicated-machine support (OS version, disk count/size ≤32 TB, boot type, etc.).
- Confirm OS is supported (Windows Server 2016+/supported Linux). Note older Win Server 2008/2012 are EOS.
2. Prepare Azure (target)
- Create an Azure subscription / target VNet / subnet and ensure RBAC: your account needs replication permissions (Contributor + Site Recovery Contributor, plus VM Contributor on the target RG/VNet).
3. Create the Recovery Services vault
- Azure portal → Recovery Services vaults → Create (a fresh vault) → in the vault, Site Recovery → choose the physical machines / VMware to Azure scenario.
4. Deploy the ASR replication appliance on-prem (Modernized)
- Download and set up the ASR replication appliance (a Windows Server VM/physical box on the same network that can reach your workgroup servers + Azure over HTTPS/443 outbound). It bundles the process server, proxy, recovery-services agent, etc.
- Register the appliance to the vault.
5. Install the Mobility Service on each workgroup server
- You can let ASR push-install it (supply a local admin credential per server, since they're workgroup — format
ServerName\localadmin), or install it manually (recommended for tightly firewalled/workgroup machines to avoid push/WMI/firewall headaches). - Ensure each server can reach the appliance and required ports are open. Mobility service install
6. Enable replication
- In the vault → Enable replication → Physical machines → add each server by IP/FQDN, pick the appliance, the target RG/VNet/subnet/storage/managed-disk type, and a replication policy (RPO threshold, recovery-point retention, app-consistent snapshot frequency).
- Initial replication seeds, then it stays in continuous delta replication.
7. Configure recovery & validate
- Build Recovery Plans (boot order, scripts) for multi-server apps.
- Run a Test Failover (DR drill) into an isolated VNet — validates boot + app health with zero impact to production. Do this regularly. DR drill / test failover
8. Real failover (when needed)
- Run Failover to spin the servers up as Azure VMs. Remember failback is to VMware VMs only.
References (relevant docs)
Set up disaster recovery to Azure for on-premises physical servers (enable replication, source/target settings, network/ports, jobs): https://learn.microsoft.com/azure/site-recovery/physical-azure-disaster-recovery
Hope this helps. If the information was useful, please consider accepting the answer and upvoting. Feel free to reach out if you need any further assistance. Thank you.