Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save gregjhogan/30b1dc387948c2b278c199dfed59802b to your computer and use it in GitHub Desktop.

Select an option

Save gregjhogan/30b1dc387948c2b278c199dfed59802b to your computer and use it in GitHub Desktop.
upload blob to storage account
$resourceGroup = ''
$storageAccount = ''
$file = ''
$container = ''
$blob = ''
$context = (Get-AzureRmStorageAccount -ResourceGroupName $resourceGroup -Name $storageAccount).Context
Set-AzureStorageBlobContent -File $file -Container $container -Blob $blob -Context $context -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment