Scripting Blog

A place to learn about PowerShell and share stories of automation

Work with the Azure Resource Manager cmdlets – Part 5

Summary: Here's how to use PowerShell to create a virtual network and a network security group. This blog post is part of a series about how to work with the Azure Resource Manager cmdlets. To get the most out of this series, read the posts in order. Work with the Azure Resource Manager cmdlets – Part 1 Work with the Azure Resource ...

PowerTip: View properties from a storage account with PowerShell

Summary: View and access the SKU from a storage account for future use.  I went to work with the New-AzureRMStorageAccount cmdlet but was confused about how to know which name to use for the SKU. Is there an easy way to know which one to use?  There most certainly is! Just create your storage account in the Azure portal first. Then you use...

Work with the Azure Resource Manager cmdlets – Part 4

Summary: Learn how to use PowerShell to create storage accounts. This blog post is part of a series about how to work with the Azure Resource Manager cmdlets. To get the most out of this series, read the posts in order. Work with the Azure Resource Manager cmdlets – Part 1 Work with the Azure Resource Manager cmdlets – Part 2 Work ...

PowerTip: Get all Azure Resource Manager resource groups with PowerShell

Summary: Using the AzureRM cmdlets to get a list of resource groups.  I have a client who has a large list of resource groups. Can you show me how to get a filtered list?  Just use the Get-AzureRMResourceGroup cmdlet and pipe the results to Where-Object. To identify all resource groups that start with HSG in the name, try this; Get-...

Work with the Azure Resource Manager cmdlets – Part 3

Summary: Create and access resource groups with the AzureRM cmdlets. This blog post is part of a series about how to work with the Azure Resource Manager cmdlets. To get the most out of this series, read the posts in order. Work with the Azure Resource Manager cmdlets – Part 1 Work with the Azure Resource Manager cmdlets – Part 2 Work...