Skip to content

Instantly share code, notes, and snippets.

View GreyWilk's full-sized avatar
🎅

Alexander Bertz GreyWilk

🎅
  • Region Skåne
  • Sweden
  • 10:24 (UTC +01:00)
View GitHub Profile
@RylandDeGregory
RylandDeGregory / AzureTablesREST.ps1
Last active September 29, 2025 19:30
Azure Table Storage REST operations using PowerShell.
$StorageAccount = ''
$Table = ''
$PartitionKey = ''
$RowKey = ''
# Set Azure Table Storage request headers
$Date = [DateTime]::UtcNow.ToString('R')
$AzTableHeaders = @{
'Accept' = 'application/json;odata=nometadata'
'x-ms-version' = '2020-08-04'