Skip to content

Instantly share code, notes, and snippets.

@upendra25312
upendra25312 / Export-AzBlobProperties.ps1
Created February 21, 2024 16:44 — forked from paratz/Export-AzBlobProperties.ps1
PowerShell script that exports the list of blobs in all containers in an Azure storage account with its name, modified date, size, and container name to a CSV file
# Set the storage account context
$storageAccount = Get-AzStorageAccount -ResourceGroupName <resource-group-name> -Name <storage-account-name>
$ctx = $storageAccount.Context
# Get the list of containers
$containers = Get-AzStorageContainer -Context $ctx
# Create an empty array to store the list of blobs
$blobs = @()
@upendra25312
upendra25312 / ListAllAEMBlobsToCsv.ps1
Created February 21, 2024 11:55 — forked from jayankandathil/ListAllAEMBlobsToCsv.ps1
PowerShell script to output all [Data Store] Blobs in AEM Azure Blob Storage
<#
.SYNOPSIS
List all AEM [Data Store] Blobs to a CSV file
.DESCRIPTION
This PowerShell script was tested with Azure PowerShell v4.3.1
.NOTES
AUTHOR: Jayan Kandathil (Adobe AEM Managed Services)
LASTEDIT: August 19, 2017