Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.38 KB

view-share-details-powershell.md

File metadata and controls

49 lines (33 loc) · 1.38 KB
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

Use PowerShell to view the details of a sent data share

This PowerShell script lists data shares from an existing account and gets the details of a specific share.

Sample script

# 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

Script explanation

This script uses the following commands:

Command Notes
Get-AzDataShare Gets and lists of shares in an account.

Next steps

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.