Azure ASM TO ARM Storage Account Migration Commands
Recently I was consulting for an Enterprise customer that wanted to move a number of their resources from Classic to Resource manager portal.
This is the migration path & step by step process that I followed
My previous post that explains the step by step process
Mircosoft link that has some steps missing
Once all the Vnet and associated VMs has been moved to Azure ARM portal, the storage account where the previous VM used to reside in ASM will need to be migrated. And below are the command that you will need.
5.Move the storage account associated with the VMs that were migrated to ARM
$saname = ”storage account name”
Validate Storage account migration
Move-AzureStorageAccount -Validate -StorageAccountName “$saname” -Debug
Prepare Storage account migration
Move-AzureStorageAccount -Prepare -StorageAccountName “$saname” -Debug
Commit Storage account migration
Move-AzureStorageAccount -Commit -StorageAccountName “$saname” -Debug
My previous post talks about how to migrate a VNET from Azure ASM to ARM




Leave a Reply