Last updated: May 2026
Azure Storage Beginner AZ-104 ⏱ 8 min read

Azure Storage Explorer

Azure Storage Explorer is a free, standalone desktop application that lets you manage Azure Storage accounts visually — browse containers, upload and download files, manage queues, view table data, and more. It's the easiest way to work with Azure Storage without writing CLI commands or navigating the Azure Portal. Available for Windows, macOS, and Linux.

What you'll learn What Storage Explorer is and when to use it · Downloading and installing · Connecting to storage accounts · Browsing and managing blobs · Uploading and downloading files · Managing file shares, queues, and tables · Generating SAS tokens from Explorer · Connecting via connection string

What is Azure Storage Explorer?

Azure Storage Explorer is a free desktop GUI tool built by Microsoft for managing Azure Storage. Think of it as a File Explorer / Finder for your Azure Storage accounts. Key capabilities:

  • Browse, upload, download, and delete blobs visually
  • Manage file shares — browse the directory structure like a local file system
  • View, add, and delete queue messages
  • Query and edit Table Storage entities
  • Generate SAS tokens with a UI
  • Connect to Azure Data Lake Storage, Cosmos DB, and emulators
  • Works with multiple subscriptions and accounts simultaneously

Installing Storage Explorer

Download from: azure.microsoft.com/features/storage-explorer

Available for:

  • Windows (x64, x86, ARM)
  • macOS (Intel, Apple Silicon)
  • Linux (AppImage, Snap, .deb)

No Azure subscription required to install. Free to use.

Connecting to Storage Accounts

Storage Explorer supports multiple connection methods:

MethodHowBest For
Azure Account (Sign In)Sign in with your Azure AD credentialsAccess all accounts in your subscriptions
Connection StringPaste the storage account connection stringQuick access without full sign-in
Account Name + KeyEnter account name and one of the keysDirect access with known credentials
SAS URLPaste a SAS token URLLimited/scoped access
Local EmulatorConnect to Azurite (local storage emulator)Local development without Azure

Recommended: Sign In with Azure Account

  1. Open Storage Explorer
  2. Click Connect to Azure resources or the plug icon
  3. Select Azure subscription
  4. Sign in with your Microsoft account
  5. All your storage accounts appear in the left panel organised by subscription

Managing Blobs

In the left panel, expand: Storage Accounts → [your account] → Blob Containers → [container name]

You can then:

  • Upload — Drag and drop files from your desktop, or click Upload
  • Download — Select blobs and click Download
  • Delete — Select and press Delete
  • Copy URL — Right-click → Copy URL to get the blob's direct URL
  • Set access tier — Right-click → Set Access Tier (Hot/Cool/Archive)
  • View properties — Size, content type, ETag, last modified
  • Set metadata — Add custom key-value metadata to blobs
💡
Batch Operations Select multiple blobs using Shift+Click or Ctrl+Click for batch download, delete, or tier changes. Much faster than doing them one by one in the portal.

Managing File Shares

Expand: Storage Accounts → [account] → File Shares → [share name]

Storage Explorer shows file shares with a familiar folder tree — browse directories, upload files to specific folders, download folders, and manage file permissions. It's the closest experience to managing a traditional file server.

Managing Queues

Expand: Storage Accounts → [account] → Queues → [queue name]

You can:

  • View messages in the queue (shows content, insertion time, expiry time, dequeue count)
  • Add new messages manually — useful for testing
  • Clear the entire queue
  • View the approximate message count

Managing Tables

Expand: Storage Accounts → [account] → Tables → [table name]

Storage Explorer shows table entities in a spreadsheet-like view. You can:

  • Query entities using OData filters
  • Add new entities with custom properties
  • Edit entity values directly in the grid
  • Delete entities
  • Export table data to CSV

Generating SAS Tokens

Right-click any container, blob, file share, queue, or table → Get Shared Access Signature

A dialog appears where you configure:

  • Permissions (read, write, delete, list, create, add)
  • Start time and expiry time
  • Allowed protocols (HTTPS only recommended)

Storage Explorer generates the SAS token and full URL — ready to copy and share.

Storage Explorer vs Azure Portal vs CLI

TaskBest ToolWhy
Browse and manage files visuallyStorage ExplorerFamiliar GUI, drag-and-drop
Upload/download large batches of filesCLI or Storage ExplorerBoth support batch operations
Create storage accountsPortal or CLIExplorer doesn't create accounts
Configure redundancy, firewallPortal or CLIExplorer is data management only
Automate/script operationsCLI or SDKsExplorer is GUI only
Quick one-off file managementStorage ExplorerFastest for ad-hoc tasks
Local development testingStorage Explorer + AzuriteConnect to local emulator
💡
AZ-104 Exam Tip Know that Azure Storage Explorer is a free standalone desktop tool for managing storage accounts. Know it supports Windows, macOS, and Linux. Know it can connect via Azure AD sign-in, connection string, account key, or SAS URL. Know it supports all four storage services — blobs, files, queues, and tables.
📝 Practice Questions
Click an option to check your answer. AZ-104 style questions.
Q1. What is Azure Storage Explorer?
A A browser extension for managing storage accounts
B A free standalone desktop application for managing Azure Storage visually
C A feature built into the Azure Portal
D A command-line tool similar to Azure CLI
Q2. Which operating systems does Azure Storage Explorer support?
A Windows only
B Windows and macOS only
C Windows, macOS, and Linux
D Windows, macOS, Linux, iOS, and Android
Q3. A developer wants to quickly test their application's queue by adding some test messages and viewing the results. What is the quickest approach?
A Write Azure CLI commands to add and view messages
B Use Azure Storage Explorer — add messages and view them in the queue panel
C Use the Azure Portal queue management blade
D Write a test application that enqueues and dequeues messages
Q4. How much does Azure Storage Explorer cost?
A Free — no licensing cost
B Part of Azure subscription — charged monthly
C Free for basic, paid for advanced features
D Free for personal use, paid for enterprise
Q5. Which storage services does Azure Storage Explorer support?
A Only Blob Storage
B Blob and File Storage only
C All four — Blob, File, Queue, and Table Storage
D Blob, File, Queue, Table, and Azure SQL databases
Comments
Disclaimer: RedKite Cloud is an independent educational resource and is not affiliated with Microsoft Corporation.