Updated – 14/02/2022 – Starting with the AZCopy version 10.13.0 and later, Microsoft added sync support between Azure Blob <-> Azure Files instead of only copy. The automation tool was updated to support this new scenario.
Azure Files enables you to set up highly available network file shares that can be accessed by using the standard Server Message Block (SMB) protocol or the Network File System (NFS) protocol. That means that multiple VMs can share the same files with both read and write access. You can also read the files using the REST interface or the storage client libraries.
In this article, we will share how to automate and copy data from Azure Blob storage to Azure file share.
Table of Contents
Copy From Azure Blob Storage to Azure File Share
We decided to put this guide together to help many readers who have reached out to us and ask how to automate and copy data from Azure blob storage to Azure file share.
You are storing data in Azure blob storage, and you have a line of business application (LOB) that can only read from SMB file share and not from blob container. In another scenario, you want to provide access to the users through an SMB file share by forcing NTFS ACLs on different data sets that you have in a blob container. You might also have other scenarios, please leave a comment below and share your use case.
For these kinds of scenarios, you have a couple of options, at the time of this writing, you could use Azure Databox Gateway which can sync with Blobs. There are also other tools that you could use like AzCopy, Azure Batch, and Azure Data Factory that can help you move data back and forth. However, using these tools comes with some fidelity loss that you want to be aware of, such as (permissions and timestamps like the last modified time will be lost/changed).
For this article, we will make use of the AzCopy tool which is a command-line utility that you can use to copy/sync blobs or files to/from a storage account, and we will use Azure Container Instances to simplify and automate the AzCopy in Runbook which will run as part of the container. In this way, we can run the container on a simple schedule to copy the data and only get billed for the time the container was used.
Please make sure to check my previous articles if you have a different use case:
> Sync between two Azure File Shares for Disaster Recovery.
> Copy between Azure File Share and Azure Blob Container.
> Sync between Azure Blob Storage and between Azure File Shares.
> Copy files from one Azure storage account to another storage account.
Prerequisites
To follow this article, you need to have the following:
1) Azure subscription – If you don’t have an Azure subscription, you can create a free one here.
2) You need to have one or two different storage accounts either in the same region, same subscription, or in different regions and subscriptions.
3) You also need to create at least one container in the blob storage and one Azure File Share in the same storage account, or across two different storage accounts.
4) Last, you need to have some files in the container.
Assuming you have all the prerequisites in place, take now the following steps:
Get started
First, we need to create an Azure automation account that will help you to automate the synchronization and the copy process without user interaction. This will also make sure to respect the security access of your storage account without exposing access keys to users.
Create Automation Account
In this step, we will create an Azure automation resource with a Run As account. Run As accounts in Azure Automation are used to provide authentication for managing resources in Azure with the Azure cmdlets. When you create a Run As account, it creates a new service principal user in Azure Active Directory (Azure AD) and assigns the Contributor role to the service principal at the subscription level.
Updated – 12/07/2023 – Please use Managed Identity instead of the Automation Run As account which makes management simpler. You don’t have to renew the certificate used by the Automation Run As account. Additionally, you don’t have to specify the Run As connection object in your runbook code. You can access resources using your Automation account’s managed identity from a runbook without creating certificates, connections, Run As accounts, etc.
// Azure Automation with Run As Account will retire on September 30, 2023, and will be replaced with Managed Identities.
Open the Azure Portal, and click All services found in the upper left-hand corner. In the list of resources, type Automation. As you begin typing, the list filters based on your input. Select Automation Accounts.
Click +Add. Enter the automation account name, choose the right subscription, resource group, and location, and then click Create.
Import modules from Gallery
Updated – 15/04/2024 – This section can be skipped since the Az PowerShell modules are already part of the Azure automation accounts.
In the next step, you need to import the required modules from the Modules gallery. In your list of Automation Accounts, select the account you created in the previous step. Then, from your Automation Account, select Modules under Shared Resources. Click the Browse Gallery button to open the Browse Gallery page. You need to import the following modules from the Modules gallery in the order given below:
- Az.Accounts
- Az.ContainerInstance
- Az.Storage

At the time of this writing, AzCopy is still not part of the Azure Automation Runbook. For this reason, we will create an Azure Container instance with AzCopy as part of the container to automate the entire copy process.
Updated – 15/04/2024 – Azure CLI commands are now part of PowerShell 7.2 runbooks in automation accounts. Thus, we could use the “az storage azcopy“is part of the storage-preview extension for the Azure CLI (version 2.50.0 or higher). However, this is still experimental and does not work as expected when managing storage operations utilizing AzCopy.
Please note that if you have imported the Az.ContainerInstance PowerShell module version 2.0 or later, please delete it from the Modules section in your Azure Automation Account and then import version 1.0.3 below.
Browse to the following page and import the Az.ContainerInstance PowerShell module version 1.0.3, then click on the Azure Automation tab and then select Deploy to Azure Automation. Last, use the script as described in this article, and it should work.
Updated – 27/12/2021 – The script below has been updated and tested with the latest Az.ContainerInstance module version 2.1 and above.
Create PowerShell Runbook
In this step, you can create multiple Runbooks based on which set of Azure blob container(s) you want to sync/copy to the Azure file share(s). PowerShell Runbooks are based on Windows PowerShell. You directly edit the code of the Runbook using the text editor in the Azure portal. You can also use any offline text editor such as Visual Studio Code and import the Runbook into Azure Automation.
From your automation account, select Runbooks under Process Automation. Click the ‘+ Create a runbook‘ button to open the Create a runbook blade.

In this example, we will create a Runbook to copy all the files and directories changes from a specific Azure bloc container to a specific file share. You can also be creative as much as you want and cover multiple Azure Blob Containers / File Shares / Directories, etc.
Edit the Runbook
Once you have the Runbook created, you need to edit the Runbook, then write or add the script to choose which Azure File Share you want to sync and copy data to the Azure blob container. Of course, you can create scripts that suit your environment.
As mentioned earlier, in this example, we will create a Runbook to read and check all the files and directories in a specific Azure Blob Container, and then copy the data over to a specific Azure file share. And to maintain a high level of security, we won’t use the storage account keys, instead, we will create a time-limit SAS token URI for each service individually (blob container and file share), the SAS token will expire automatically after 60 minutes. So, if you regenerate your storage account keys in the future, the automation and copy process won’t break.
Please note that you can also update the parameter section below and copy between storage accounts across different subscriptions.
Updated – 27/12/2021 – The script below has been updated and tested with the latest Az.ContainerInstance module version 2.1 and above.
The automation script is as follows:
<#
.DESCRIPTION
A Runbook example that continuously checks for files and directories changes in recursive mode
for a specific Blob container and then copy data to Azure file share by leveraging the AzCopy tool
which is running in a Container inside an Azure Container Instance using Service Principal in Azure AD.
.NOTES
Filename : Copy-BlobContainerToAzureFileShare
Author : Charbel Nemnom (Microsoft MVP/MCT)
Version : 2.2
Date : 24-October-2021
Updated : 12-July-2023
Tested : Az.ContainerInstance PowerShell module version 2.1 and above
.LINK
To provide feedback or for further assistance please visit: https://charbelnemnom.com
#>
Param (
[Parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]
[String] $AzureSubscriptionId,
[Parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]
[String] $storageAccountRG,
[Parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]
[String] $storageAccountName,
[Parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]
[String] $storageContainerName,
[Parameter(Mandatory = $true)][ValidateNotNullOrEmpty()]
[String] $storageFileShareName
)
# Ensures you do not inherit an AzContext in your runbook
Disable-AzContextAutosave -Scope Process
# Connect to Azure with system-assigned managed identity (automation account)
Connect-AzAccount -Identity
# SOURCE Azure Subscription
Set-AzContext -Subscription $AzureSubscriptionId
# Get Storage Account Key
$storageAccountKey = (Get-AzStorageAccountKey -ResourceGroupName $storageAccountRG -AccountName $storageAccountName).Value[0]
# Set AzStorageContext
$destinationContext = New-AzStorageContext -StorageAccountName $storageAccountName -StorageAccountKey $storageAccountKey
# Generate Container SAS URI Token which is valid for 60 minutes ONLY with read and list permission
$blobContainerSASURI = New-AzStorageContainerSASToken -Context $destinationContext `
-ExpiryTime(get-date).AddSeconds(3600) -FullUri -Name $storageContainerName -Permission rl
# Generate File Share SAS URI Token which is valid for 60 minutes ONLY with read and write permission
$fileShareSASURI = New-AzStorageShareSASToken -Context $destinationContext `
-ExpiryTime(get-date).AddSeconds(3600) -FullUri -ShareName $storageFileShareName -Permission rw
# Create azCopy syntax command
$command = "azcopy","copy",$blobContainerSASURI,$fileShareSASURI,"--recursive=true","--overwrite=ifSourceNewer"
# Choose the following syntax if you want to Sync instead of Copy
# $command = "azcopy","sync",$blobContainerSASURI,$fileShareSASURI,"--recursive=true","--delete-destination=true"
# Container Group Name
$jobName = $storageAccountName + "-" + $storageFileShareName + "-azcopy-job"
# Set the AZCOPY_BUFFER_GB value at 2 GB which would prevent the container from crashing.
$envVars = New-AzContainerInstanceEnvironmentVariableObject -Name "AZCOPY_BUFFER_GB" -Value "2"
# Create Azure Container Instance Object and run the AzCopy job
# The container image (peterdavehello/azcopy:latest) is publicly available on Docker Hub and has the latest AzCopy version installed
# You could also create your own private container image and use it instead
# When you create a new container instance, the default compute resources are set to 1vCPU and 1.5GB RAM
# We recommend starting with 2 vCPU and 4 GB memory for a large blob containers (E.g. 3TB)
# You may need to adjust the CPU and memory based on the size and churn of your file share
$container = New-AzContainerInstanceObject -Name $jobName -Image "peterdavehello/azcopy:latest" `
-RequestCpu 2 -RequestMemoryInGb 4 -Command $command -EnvironmentVariable $envVars
# The container will be created in the $location variable based on the storage account location. Adjust if needed.
$location = (Get-AzResourceGroup -Name $storageAccountRG).location
$containerGroup = New-AzContainerGroup -ResourceGroupName $storageAccountRG -Name $jobName `
-Container $container -OsType Linux -Location $location -RestartPolicy never
Write-Output ("")
Please note that if you have soft delete enabled on blob storage (which is the default now), you must add the “–overwrite=ifSourceNewer” option to the “copy” command, otherwise, it would overwrite identical/unchanged files by default, and rapidly balloon out your storage costs. The script was updated to take into consideration the container soft delete feature.
Once done, click “Save” the script in the CMDLETS pane as shown in the figure below.

Then, test the script using the “Test pane” to verify it’s working as intended before you publish it.
Once the test is completed successfully, publish the Runbook by clicking Publish. This is a very important step.
Schedule the Runbook
In the final step, you need to schedule the Runbook to run based on your desired time to copy the changes from the blob container to the Azure file share.
Within the same Runbook that you created in the previous step, select Schedules and then click + Add schedule.
So, if you need to schedule the Runbook to run every two hours, then you need to create the following schedule with Recur every 2 Hours with Set expiration to No and then click “Create“. You can also run it on-demand if you wish to do so.

While scheduling the Runbook, you can configure and pass the required parameters for the PowerShell Script.
In this example, we need to specify the Azure Subscription ID, Resource Group Name, Storage Account Name, Azure Blob Container Name, and the Azure File Share Name that you want to copy over. The sample script takes those parameters as input.
Once done, click OK twice.
Test the Runbook
In this section, we will test the Runbook and request on-demand storage sync to copy the data from an Azure blob container to an Azure file share. This scenario simulates when an application or user adds or modifies files directly in Azure blob storage, and then copies the data to the Azure file share automatically.
Browse to the recently created Runbook, and on the overview page click the “Start” button. Enter the required parameters as input and then click “OK“.
The job will kick in, and after a short period, you will see the output and logs under the “Output” to verify that the copy job finished successfully, as shown in the figure below.

You can also monitor the success or failure of these schedules using the “Jobs” page of Runbooks under Resources.
You can see the next run schedule using the “Schedules” page, in my example, the Runbook will run every 2 hours, and so forth…

That’s it, there you have it!
This is version 2.2; if you have any feedback or changes that everyone should receive, please feel free to leave a comment below.
Summary
In this article, we showed you how to copy data from an Azure blob container to an Azure file share using the AzCopy tool running in a container. In this way, we can run the container with copy jobs on a simple schedule and only get billed for the time the container is used.
At the time of this writing, if you delete some files from the Azure blob container, they won’t be deleted from the Azure file share automatically. This is a copy job and not a synchronization solution. Starting with the AZCopy version 10.13.0 and later, Microsoft added sync support between Azure Blob <-> Azure Files instead of only copy. The automation tool described in this article was updated to support this new scenario.
Do you want to learn more about Azure Storage, including Azure Blobs and Azure File Shares? Check out my recently published online course, Azure Storage Essential Training.
__
Thank you for reading my blog.
If you have any questions or feedback, please leave a comment.
-Charbel Nemnom-
Hi Charbel,
Is it possible to access the storage account without SAS token? I have a scenario in which the storage account access keys are disabled and azure ad authentication is enabled.
I need to copy the files from blob to Azure share using Azure AD authentication.
Hello Karthik, thank you for the comment and the great question!
Please note that Azure Blobs do support Azure Active Directory (Azure AD) authentication which you can enable it at the storage account level or at the container level.
Then you can set the least privilege RBAC roles for granular access to blob data.
However, Azure Files support only Azure AD with Azure AD Domain Services (AAD DS) for cloud-only or Azure AD Kerberos for hybrid identities.
In summary, we cannot automate to copy files from blob to Azure file share using Azure AD authentication. However, we can copy files from blob to blob using Azure AD authentication.
This limitation is on the Azure file share side. Microsoft is actively working to support Azure AD authentication for Azure Files in the near future.
Hope it helps!
Thank you so much for your response. https://techcommunity.microsoft.com/t5/azure-storage-blog/general-availability-introducing-azure-ad-support-for-azure/ba-p/3826733 Is this something Ll help in this scenario?
Hello Karthik,
Yes, Microsoft recently announced the general availability of Azure AD support for Azure Files REST API with OAuth authentication.
This is useful when accessing through the REST API only, which could be used to automate the copy from Azure Blob to Azure file share.
This enables share-level read and write access to SMB Azure file shares for users, groups, and managed identities (MI) when accessing through the REST API.
The key goal is to unblock many scenarios, vanguard requirement and enable developers, first-party and third-party services to access Azure file shares securely, without storing or managing any credentials.
Now for the purpose of automating this task, you need to use AzCopy with managed identity and give it the following access:
> Storage Blob Data Reader on the storage account (container) to read.
> Storage File Data Privileged Contributor on the storage account (file share) to write.
This is a great option if you plan to use AzCopy inside of a script that runs without user interaction, and the script runs from a VM or a container as illustrated above.
When using this option, you won’t have to store any credentials on the container. You have to enable managed identity on the container instances and then use
azcopy login --identityin your script.Hope it helps!
Great script!
Tried it in my lab and it works like a charm.
I’m trying to get it to work with a storage account that has restricted access. I need the container to access the storage account through a subnet on a specific vnet. Been trying to configure it, but haven’t been able to successfully modify the script and get it to work the way I want.
Do you have any Idea how I could achieve this?
This does not appear to be working for me. My output is also not as extensive as yours, I’m only getting name, subscription, account, environment, tenant, tokencache, versionprofile, and extendedproperties. No errors or warnings.
Hello Thomas, thanks for the comment and for sharing your feedback!
I am happy to hear it’s working for you.
Regarding a storage account with restricted access, check the following section, where I have described how to use Azure Container Instances with storage accounts and disabled network access.
Hope it helps!
Hello Adam, thanks for the comment!
It is difficult to debug this issue without more details or environmental overview/access.
Many readers have already confirmed and commented that it’s working. I suggest rechecking the steps illustrated above and verifying the permissions.
Thanks!
How would I remove the source files in the blob after copy to the SMB share?
Hello Brad, thanks for the comment!
Please note that Microsoft has decided not to include an option for deleting the source data when using “
azcopy” with the “copy” flag as a safety operation.However, you could overcome this limitation by using the “
Azure Storage Actions” service and using the “DeleteBlob” operation after the source files have been copied from the blob into the SMB share.Hope it helps!
Hello, thanks for the great article ! It lead me to Azure automation world 🤩
Is there a way to set the content-type of image copied ? I’m copying image from file share to blob container and the image copied is detected as “application/octet-stream” content-type and therefore, when accessing the image by it’s URL, the browser downloads the image instead of displaying it. I’m trying to set the content-type to image/jpeg but always get error.
From PowerShell on Windows “azcopy copy “.\image.jpg” –content-type “image/jpeg”” it works
Or any other command than azcopy without the need of a container ?
Hello Sanch, Thanks for the kind words—glad it helped!
When you copy from Azure Files to Blob, the file lands with the default application/octet-stream. Since Azure Files doesn’t carry HTTP headers like Content-Type, you’ll need to set it yourself so browsers display the image instead of downloading it.
You can fix this in a couple of ways as follows:
AzCopy:
azcopy copy "...\*.jpg" "blob-url" --content-type "image/jpeg" --recursiveOr after upload:
azcopy set-properties "blob-url/*.jpg" --content-type "image/jpeg" --recursiveAzure CLI:
az storage blob set-properties \ --account-name "account" \ --container-name "container" \ --name image.jpg \ --content-type image/jpegPowerShell:
Set-AzStorageBlobContent -File .\image.jpg -Container "container" -Blob image.jpg ` -Properties @{ ContentType = 'image/jpeg' }That way, the blob has the right Content-Type, and images will render in the browser as expected.
If you’re doing this often, AzCopy is the easiest to automate in scripts or scheduled jobs. Hope that helps!