Created
February 27, 2015 12:59
-
-
Save pkirch/6807052e6d5933bebdd9 to your computer and use it in GitHub Desktop.
This short PowerShell sample shows how to select only the storage account names of all storage accounts in an Azure subscription.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-AzureStorageAccount | Select-Object -Property StorageAccountName | |
<# Output | |
StorageAccountName | |
------------------ | |
pkstoragesample1 | |
pktest1 | |
#> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment