Azure Services for Windows Mapped Drive Access

Recommended Azure Service for Windows Mapped Drive Access

Question

One of your friends has an application that is supposed to run on Windows and needs access to a mapped drive.

He asks you about the Azure service that he should use.

Which of the following Azure services would you recommend to him?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D. E.

Correct Answer: C

Azure Files offer fully managed cloud file shares that can be accessed from anywhere using the industry-standard Server Message Block (SMB) protocol.

Azure file shares can be used with windows either by mounting it or accessing it through its UNC path.

Option A is incorrect.

Azure blobs are used to store the unstructured data and access it at a massive scale in block blobs.

Option B is incorrect.

Azure tables can be used to store structured NoSQL data in the cloud.

Option C is correct.

Azure file shares can be used with windows either by mounting it or accessing it through its UNC path.

Option D is incorrect.

Azure Queues allow asynchronous message queueing among various application components.

Option E is incorrect.

Azure disk allows persistently storing and accessing the data from an attached virtual hard disk.

References:

To know more about Azure Storage Devices, please visit the below-given links:

Of the Azure services listed, the appropriate choice for your friend's application that requires access to a mapped drive would be Azure Files (option C).

Azure Blob Storage (option A) is used to store unstructured data, such as text and binary data. It is a good choice for scenarios that involve large volumes of data and can be accessed via HTTP/HTTPS endpoints.

Azure Table Storage (option B) is a NoSQL database service that is designed to store structured data. It is best suited for applications that require fast and flexible storage of non-relational data.

Azure Queues (option D) is a messaging service that allows for asynchronous communication between different components of an application. It is commonly used in scenarios where multiple components need to exchange messages, but they do not need to interact in real-time.

Azure Disk (option E) is a service that provides durable and high-performance block storage for Azure virtual machines. It is designed to be used as an operating system or data disk for virtual machines running in Azure.

Azure Files (option C) provides SMB-based file shares that can be accessed from Windows, Linux, and macOS. It is designed to support traditional file-based applications and workloads that require access to a shared file system. With Azure Files, your friend can easily map the file share to his application running on a Windows machine and access the files as if they were stored locally.