An Azure service that is used to provision Windows and Linux virtual machines.
Hello @Idit Bnaya
Thank you for reaching out with this question. I understand the concern, especially given the upcoming retirement of Standard HDD as OS disks by 8 September 2028 and the scale of your Azure Site Recovery (ASR) deployment.
For clarity:
At this time, Azure does not provide a supported PowerShell or Azure CLI method to bulk‑change the disk type of ASR replica disks (RecoveryReplicaDiskId) for machines that are already protected. The supported guidance only allows disk‑type changes to ASR replica disks through manual actions in the Azure portal, performed per disk. There is no documented API, CLI, or automation workflow that can update ASR replica disk SKUs in bulk without re‑protection.
Microsoft documentation does confirm that disk types can be changed after protection, but this applies to individual managed disks via the portal, not large‑scale automated updates.
For large environments, Microsoft recommends focusing on the source VM OS disks, which does support bulk identification and conversion:
- Identify all OS disks currently using Standard HDD using PowerShell or Azure CLI
- Convert source OS disks to Standard SSD or Premium SSD using supported tooling
- Ensure all new ASR protections inherit the updated disk type
Example commands to identify affected OS disks:
Get-AzDisk | Where-Object { $_.Sku.Name -eq "Standard_LRS" -and $_.OsType }
az disk list --query "[?sku.name=='Standard_LRS' && osType!=null]" --output table
1.Bulk conversion is supported for source VM OS disks
2.Bulk conversion is not supported for existing ASR replica disks
Links :
https://dori-uw-1.kuma-moon.com/en-us/azure/virtual-machines/disks-hdd-os-retirement
https://dori-uw-1.kuma-moon.com/en-us/azure/virtual-machines/disks-convert-types?tabs=azure-powershell
Thanks,
Manish.