Skip to content

Instantly share code, notes, and snippets.

@sjkp
Created June 28, 2015 22:02
Show Gist options
  • Save sjkp/6a4237f9cf14e1c69c1f to your computer and use it in GitHub Desktop.
Save sjkp/6a4237f9cf14e1c69c1f to your computer and use it in GitHub Desktop.
Download Azure ARM templates from the gallery
New-Item -path 'C:\Azure\arm-Templates\' -type directory -Force
$microsoftTemplates = Get-AzureResourceGroupGalleryTemplate -Publisher 'Microsoft'
foreach ($item in $microsoftTemplates)
{
$identity = $item.'Identity'
Save-AzureResourceGroupGalleryTemplate -Identity $identity `
-Path C:\Azure\arm-Templates\ `
-Force `
-Verbose
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment