Accesss Key string

Rudi Birenbaum 61 Reputation points
2022-02-21T08:08:47.77+00:00

Hi. I can't copy access keys (connection string), what do I have to do to copy the access keys?

Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
3,088 questions
0 comments No comments
{count} votes

Accepted answer
  1. Sumarigo-MSFT 45,771 Reputation points Microsoft Employee
    2022-02-21T12:03:08.79+00:00

    @Rudi Birenbaum Welcome to Microsoft Q&A Forum , Thank you for posting your query here!

    To view and copy your storage account access keys or connection string from the Azure portal:

      • In the Azure portal, go to your storage account.
    • Under Security + networking, select Access keys. Your account access keys appear, as well as the complete connection string for each key.
    • Select Show keys to show your access keys and connection strings and to enable buttons to copy the values.

    176339-image.png

    You can also use azure Powershell : To retrieve your account access keys with PowerShell, call the Get-AzStorageAccountKey command.

    The following example retrieves the first key. To retrieve the second key, use Value1 instead of Value[0]. Remember to replace the placeholder values in brackets with your own values.

    $storageAccountKey = `  
        (Get-AzStorageAccountKey  
        -ResourceGroupName <resource-group> `  
        -Name <storage-account>).Value[0]  
    

    If the issue still persist, please share the screenshot of the issues.

    Please let us know if you have any further queries. I’m happy to assist you further.


    Please do not forget to 176345-screenshot-2021-12-10-121802.png and 176346-image.png wherever the information provided helps you, this can be beneficial to other community members.

    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Rudi Birenbaum 61 Reputation points
    2022-02-21T12:08:37.417+00:00

    176349-screenshot-from-2022-02-21-13-06-06.png

    I have something like that and can't enable copy.

    0 comments No comments

  2. Radu Vunvulea 246 Reputation points Microsoft Regional Director
    2022-02-21T12:38:15.43+00:00

    Try to click on the "Hide/Unhide Keys" button in the top part of the screen.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.