Scripting Blog [archived]

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

PowerTip: Identify Regions in Azure

Summary: Use Windows PowerShell to get a current list of regions in Azure. (image)  How can I use Windows PowerShell to show me a list of the regions in Microsoft Azure? (image)  Use the Get-AzureLocation cmdlet to output the list to your screen, then you can filter with            the ...

PowerTip: See Data in Azure Storage

Summary: Use Windows PowerShell to show the files in an Azure Storage blob. (image)  How can I use Windows PowerShell to see files that are in my subscription and stored in Azure blobs? (image)  Use a combination of the Get-AzureStorageContainer and Get-AzureStorageBlob cmdlets.          ...

PowerTip: Identify Extensions in Azure

Summary: Use Windows PowerShell to get a current list of virtual machine extensions in Azure. (image)  How can I find all the extensions that are available for virtual machines in Azure? (image)  To see all the extensions for a virtual machine in Azure, type: Get-AzureVMAvailableExtension | Format-Table (image...