Unfortunately we have closed our business. I want to cancel my Azure subscription, but before I do that, I need to download all our files for storage. How can I do this?

Buzz Beyer 20 Reputation points
2025-04-02T08:12:42.5033333+00:00

Unfortunately we have closed our business, I want to cancel my Azure subscription, but before I do that, I need to download all our files for storage. How can I do this?

Azure Archive Storage
{count} votes

Accepted answer
  1. Vinod Kumar Reddy Chilupuri 4,185 Reputation points Microsoft External Staff Moderator
    2025-04-02T10:12:51.37+00:00

    Hi Buzz Beyer,

    To download all files from Azure storage before canceling your subscription, you can use Azure Storage Explorer to select and download files or utilize AzCopy for bulk downloads.

    Using Storage Explorer:

    • Downloading and installing Azure Storage Explorer from the official Microsoft website.
    • Sign In to Your Account open the application and log in using your Azure account.
    • Access your storage account and navigate to the container that holds your files.
    • Choose Files select the files or folders you want to download.
    • Right-click on the selected files and choose the "Download" option to save them to your local computer.

     

    Using AzCopy:

    • Download AzCopy from Azure's official page and install it.
    • Authenticate with Azure:
      • Open a command prompt.
      • Run the following command to log in to your Azure account:
        azcopy login
    • Get the Blob SAS URL:
      • Log into the Azure Portal, navigate to your storage account, and locate the container that holds your files.
      • Generate a Shared Access Signature (SAS) token for the container to enable secure access.
    • Download Files:
      • Use the following command to download all files from the container to a folder on your local machine:
    azcopy copy "https://<storage-account-name>.blob.core.windows.net/<container-name>?<sas-token>" "<local-directory>" --recursive
    
    
    • Replace <storage-account-name>, <container-name>, <sas-token>, and <local-directory> with your actual values:
    • <storage-account-name>: Name of your Azure Storage account.
    • <container-name>: The name of the blob container.
    • <sas-token>: The SAS token you generated.
      • <local-directory>: The path where files will be saved locally.
      • Once the process is complete, check the target folder to ensure all files have been downloaded.

    https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-blobs-download
    https://stackoverflow.com/questions/58453330/download-all-files-from-azure-storage-account
    https://learn.microsoft.com/en-us/azure/cost-management-billing/manage/cancel-azure-subscription
     Hope the above suggestion helps! Please let us know do you have any further queries.

    Please do consider to “Accept the answer” wherever the information provided helps you, this can be beneficial to other community members. 

     

    2 people found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Venkatesan S 2,830 Reputation points Microsoft External Staff Moderator
    2025-04-03T11:00:31.6033333+00:00

    Hi @Buzz Beyer

    Unfortunately we have closed our business, I want to cancel my Azure subscription, but before I do that, I need to download all our files for storage. How can I do this?

    You can use the Microsoft Azure Storage Explorer to download all files from the Azure storage. Here is the step by step to connect and download all files from Azure storage.

    • Before establishing a connection, you need the connection string from Azure Storage, which you can obtain from the Azure portal. Azure portal -> your storage account -> Security + Networking -> Access key -> Copy the connection string. User's image
    • Open the Microsoft Azure Storage Explorer and click the connect to Azure Resource. User's image
    • Next click the Storage account or resource. User's image
    • Select the Connection string method.
      User's image
    • Add the display name as per your requirement. Here, I have used "Sample" as a placeholder and pasted it along with the connection string. User's image
    • Click Next and you will see the summary like below and click the connect button. User's image
    • Now, you can see the storage account with the display name "Sample" in your explorer. User's image
    • Now, if you click on the container, you will see the "Download All" button in the explorer. User's image

    The above steps will download all files from the Azure storage using Microsoft Azure Storage Explorer.

    Reference:

    Manage Azure Blob Storage resources with Storage Explorer | Microsoft Learn

    Hope this answer helps! please 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.

    1 person found this answer helpful.
    0 comments No comments

Your answer

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