Skip to content

Instantly share code, notes, and snippets.

View julian-wendt's full-sized avatar

Julian Wendt julian-wendt

  • glueckkanja
  • Germany
  • 07:06 (UTC +02:00)
View GitHub Profile
@RylandDeGregory
RylandDeGregory / AzureTablesREST.ps1
Last active May 20, 2025 12:41
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'