-1

So I am trying to create a PowerShell runbook to automate the upload of files from local machine and network drives to an Azure storage account. I have tried doing this with Set-AzureStorageFileContent however get the error that the directory does not exist.

Any help would be greatly received.

Thank you.

MDMeany
  • 23
  • 5

1 Answers1

0

Runbooks run on the azure cloud platform, and it does not know(cannot communicate with) your local storage.

I suggest you can use Hybrid Runbook Worker feature of Azure Automation to run runbooks directly on your computer, which can access those local resources.

Ivan Glasenberg
  • 29,865
  • 2
  • 44
  • 60