Skip to content

Instantly share code, notes, and snippets.

View Wuzardor's full-sized avatar
⌨️
Doing stuff

Wuzardor Wuzardor

⌨️
Doing stuff
  • AA&MM Software
  • Lyon
View GitHub Profile
@DaveRuijter
DaveRuijter / backup-dls.ps1
Created October 21, 2021 20:16
This PowerShell script performs a copy between two storage accounts using AzCopy.
param(
[String]$sourceStorageAccount,
[String]$targetStorageAccount,
[String]$sourceFolder,
[String]$targetFolder,
[String]$sourceSasToken,
[String]$targetSasToken,
[String]$triggerPeriod,
[Int32]$azCopyConcurrency
)