Skip to content

Instantly share code, notes, and snippets.

View robynstanco's full-sized avatar
💭
Coding...beep boop

Robyn Stanco robynstanco

💭
Coding...beep boop
View GitHub Profile
@dzimchuk
dzimchuk / gist:1e45174d3a63705b9171
Last active February 2, 2022 16:41
PowerShell script to copy Azure Table from one account to another
param (
[string]
$sourceConnectionString = $(throw "-sourceConnectionString is required."),
[string]
$sourceTableName = $(throw "-sourceConnectionString is required."),
[string]
$targetConnectionString = $(throw "-targetConnectionString is required."),
[string]
$targetTableName = $(throw "-targetTableName is required.")
)