Hello Marcin Policht,
Thank you for posting your query here!
Adding on to the previous response, since you cannot directly transfer Managed Disks or page blobs to an archive tier, you would need to convert these disks into a format suitable for block blobs if you want to use the archive tier. Here's how you might approach it:
· Create a snapshot of your Managed Disk. This snapshot captures the disk state at a specific point in time. https://learn.microsoft.com/en-us/azure/virtual-machines/snapshot-copy-managed-disk?tabs=portal
· Once the snapshot is created, you can export it to a VHD file. This is done by copying the snapshot to a Blob Storage account as a page blob (VHD). https://learn.microsoft.com/en-us/azure/virtual-machines/scripts/copy-snapshot-to-storage-account
· Once your VHD is in Blob Storage as a page blob, you might want to convert it into a block blob to enable setting an access tier like 'Archive'. https://learn.microsoft.com/en-us/azure/storage/blobs/convert-append-and-page-blobs-to-block-blobs?tabs=azcopy
· Finally, you can set the access tier to 'Cool' or 'Archive' depending on how frequently you expect to access the VHD. Set a blob's access tier - Azure Storage | Microsoft Learn
Do let us know if you have any further queries. I’m happy to assist you further.
Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.