How can I track the download progress of a large file from Azure Storage Browser?

Dinesh Kumar Mathiyarasan 40 Reputation points
2026-09-01T11:49:17.6866667+00:00

How can I track the download progress of a large file from Azure Storage Browser?

I’m trying to download a large file from Azure Portal → Storage Browser → Containers. The download starts, but I’m not able to see the progress percentage or how much data has been downloaded.

Is there any way to monitor the download progress, transfer speed, or remaining time directly from the Azure Portal?

If not, what would be the recommended option—Azure Storage Explorer, AzCopy, Azure CLI, or PowerShell—to download the file and track the progress in real time?

Azure Storage
Azure Storage

Globally unique resources that provide access to data management services and serve as the parent namespace for the services.

0 comments No comments

1 answer

Sort by: Oldest
  1. Marcin Policht 107.9K Reputation points MVP Volunteer Moderator
    2026-09-01T13:04:12.2066667+00:00

    Unfortunately, there is no way to monitor real-time download progress, transfer speed, or remaining time directly inside the Azure Portal. Storage Browser initiates a browser-based HTTP download, leaving the actual transfer to your browser's download manager. For large files, this can also be less reliable because a failed or timed-out browser download may not provide the same resume/retry capabilities as dedicated Azure transfer tools.

    For large files, I'd recommend AzCopy. It is designed specifically for Azure Storage transfers and provides real-time progress information, including percentage completed, amount transferred, transfer speed, and remaining data. It is also better suited to large transfers because it can handle retries and resume interrupted transfers. A typical command is:

    azcopy copy "https://<account>.blob.core.windows.net/<container>/<file>?<SAS-token>" "C:\local\path"
    

    You can obtain a read-only SAS URL for the blob or container from the Azure Portal and use that URL with AzCopy. Alternatively, if your environment permits Microsoft Entra authentication, you can authenticate AzCopy with your Azure identity instead of using a SAS token.

    If you prefer a graphical interface, Azure Storage Explorer is your alternative. Select the blob and choose Download; the Activities panel provides transfer progress and related information while the download is running. It is considerably more useful for monitoring a large transfer than the Azure Portal's Storage Browser.

    Azure CLI and PowerShell can also perform the download and are good choices when you want to automate the operation, but for a large file where you specifically care about transfer progress and reliability, I would use AzCopy.


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.