I was looking for a free solution to have email notifications for Azure backup. After reading other blogs and technet
Category: Azure
Create a Disk in specific Storage Account and Attach it to a VM in Azure
There are many reasons to have your Disks stored at separate Storage Accounts, per Cloud Service. One is that a Storage
Copy AZURE VHD to other storage account
#Source storage account $context1 = new-azurestoragecontext -storageaccountname “name_source_account” -storageaccountkey “key_source_account” #Destination storage account $context2 = new-azurestoragecontext -storageaccountname “name_destination_account” -storageaccountkey “key_destination_account”
Track Azure VHD copy process
$context = new-azurestoragecontext -storageaccountname “name_destination_account” -storageaccountkey “key_destination_account” Get-AzureStorageBlobCopyState -Blob “file_name.vhd” -Container “vhds” -Context $con Source: http://devslice.net/2013/10/moving-a-windows-azure-virtual-machine-to-a-different-data-center/ Pantelis ApostolidisPantelis Apostolidis is