Scripting Blog [archived]

Formerly known as the "Hey, Scripting Guy!" blog

PowerTip: View properties from a storage account with PowerShell

Summary: View and access the SKU from a storage account for future use. (image)  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? (image)  There most certainly is! Just create your storage account in the Azure portal ...

PowerTip: Get all Azure Resource Manager resource groups with PowerShell

Summary: Using the AzureRM cmdlets to get a list of resource groups. (image)  I have a client who has a large list of resource groups. Can you show me how to get a filtered list? (image)  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 ...