how to determine the storage account in ARM (Azure Resource Manager)?

Baskar Kesavulu 1 Reputation point
2020-12-12T00:31:22.78+00:00

I have bunch of storage accounts (Classic). Some of the storage accounts migrated to ARM to utilize dsms.
How to identify a storage account is in ARM?
Thanks
Baskar K

Azure Storage Explorer
Azure Storage Explorer
An Azure tool that is used to manage cloud storage resources on Windows, macOS, and Linux.
230 questions
{count} votes

3 answers

Sort by: Most helpful
  1. Grant MacLean 6 Reputation points
    2020-12-12T01:51:08.473+00:00

    @Baskar Kesavulu , From Azure Portal, the Resource Type differentiates the SA type. Here, looking at Storage Accounts, you can see the Type and Resource Type columns showing Classic and ARM accounts: ![47449-image.png][1] [1]: /api/attachments/47449-image.png?platform=QnA Through Azure Powershell, you can use Get-AzureRmResource to show the resource type, with something like this (replacing "SA-prefix-" as appropriate to your standards): Get-AzureRmResource -name 'SA-prefix-*' | select ResourceType | ft ResourceType ------------ Microsoft.Storage/storageAccounts Microsoft.ClassicStorage/storageAccounts

    0 comments No comments

  2. Sumarigo-MSFT 43,641 Reputation points Microsoft Employee
    2020-12-15T14:49:33.227+00:00

    @Baskar Kesavulu Adding more information to the above response! You can also view it through the storage explorer tool. Which give complete details of action and properties
    48421-capture.png

    There is also a similar thread discussion, please refer to the suggestion,

    Hope this helps!

    Kindly let us know if the above helps or you need further assistance on this issue.

    ----------------------------------------------------------------------------------------------------

    Please don’t forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    0 comments No comments

  3. Baskar K 1 Reputation point
    2020-12-24T03:29:39.22+00:00

    Those accounts are not showing "Classic", but dsms responding as not in ARM. That's why I am confused.
    Is there any script or command to find out whether the account is in ARM.

    0 comments No comments