title | description | author | ms.service | ms.topic | ms.date | ms.author | ms.custom |
---|---|---|---|---|---|---|---|
PowerShell script: Create an Azure Data Share invitation |
This PowerShell script sends a data share invitation. |
joannapea |
data-share |
article |
01/03/2022 |
joanpo |
devx-track-azurepowershell |
This PowerShell script creates a data share invitation.
# Set variables with your own values
$resourceGroupName = "<Resource group name>"
$dataShareAccountName = "<Data share account name>"
$dataShareName = "<Data share name>"
$targetEmail = "<Target email>"
# Send a data share invitation
New-AzDataShareInvitation -ResourceGroupName $resourceGroupName -AccountName $dataShareAccountName -ShareName $dataShareName -Name $dataShareName -TargetEmail $targetEmail
This script uses the following commands:
Command | Notes |
---|---|
New-AzDataShareInvitation | Create a data share invitation. |
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.