title | description | services | author | ms.author | ms.service | ms.topic | ms.date | ms.custom |
---|---|---|---|---|---|---|---|---|
PowerShell script: List existing shares in Azure Data Share |
This PowerShell script lists and displays details of shares. |
data-share |
sidontha |
sidontha |
data-share |
article |
10/31/2022 |
This PowerShell script lists data shares from an existing account and gets the details of a specific share.
# Set variables with your own values
$resourceGroupName = "<Resource group name>"
$dataShareAccountName = "<Data share account name>"
$dataShareName = "<Data share name>"
#Lists all data shares within an account
Get-AzDataShare -ResourceGroupName $resourceGroupName -AccountName $dataShareAccountName
#Gets details of a specific data share
Get-AzDataShare -ResourceGroupName $resourceGroupName -AccountName $dataShareAccountName -Name $dataShareName
This script uses the following commands:
Command | Notes |
---|---|
Get-AzDataShare | Gets and lists of shares in an account. |
For more information on the Azure PowerShell, see Azure PowerShell documentation.
Additional Azure Data Share PowerShell script samples can be found in the Azure Data Share PowerShell samples.