title | description | author | ms.author | ms.service | ms.topic | ms.date | ms.custom |
---|---|---|---|---|---|---|---|
PowerShell script: List Azure Data Share invitations sent to a consumer |
Learn how this PowerShell script gets invitations sent to a consumer and see an example of the script that you can use. |
sidontha |
sidontha |
data-share |
article |
10/31/2022 |
This PowerShell script gets invitations sent to a consumer.
# Set variables with your own values
$invitationId = "<invitationId>"
$location = "<location>"
#List invitations sent to a consumer
Get-AzDataShareInvitation
#Get a specific invitation sent to a consumer
Get-AzDataShareInvitation -location -invitationId
This script uses the following commands:
Command | Notes |
---|---|
Get-AzDataShareInvitation | Get and list sent data share invitations. |
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.