How to mount Azure drive (attach disk) to the local windows? Does already exist some tool for this?
So use case is the following. I have a attached disk to the virtual machine in the azure. Now I would like to share this "attached disk" to my local windows. What is the simplest way to do it?
** I know there would be possibility to create local network thru VPN, and then "normally" share it. But lest say I am interested in even simpler option, because I would like that to access to this disk via multiple location.
Azure Disks, stored as VHD in a blob, may only be attached to a Windows Azure virtual machine.
If, say, you wanted to build out the disk and then attach to a local Windows machine, you'd need to download the vhd and then attach it through the computer management (or PowerShell).
I'm not sure about your app's architecture, but... assuming it's not a legacy app, it should be very easy for you to read/write blobs directly without setting up a data disk. This has several advantages. For instance:
The Storage REST API is very well documented. On top of the API, there are several language-specific SDKs making it very easy to interact with blobs: .NET, Node.js, Java, PHP, Python, and Ruby.