Grant-PnPAzureADAppSitePermission
SYNOPSIS
Required Permissions
- Microsoft Graph API: Sites.FullControl.All
Adds permissions for a given Azure Active Directory application registration
SYNTAX
Grant-PnPAzureADAppSitePermission -AppId <Guid> -DisplayName <String> -Permissions <Read|Write> [-Site <SitePipeBind>]
DESCRIPTION
This cmdlet adds permissions for a given Azure Active Directory application registration in a site collection. It is used in conjunction with the Azure Active Directory SharePoint application permission Sites.Selected. Notice that this cmdlet allows for fewer permissions compared for when updating rights through Set-PnPAzureADAppSitePermission. If you wish to i.e. assign FullControl permissions, you need to add read or write permissions through this cmdlet first and then update it to FullControl.
EXAMPLES
EXAMPLE 1
Grant-PnPAzureADAppSitePermission -AppId "aa37b89e-75a7-47e3-bdb6-b763851c61b6" -DisplayName "TestApp" -Permissions Read
Adds permissions for the Azure Active Directory application registration with the specific application id and sets the rights to 'Read' access for the currently connected to site collection
EXAMPLE 2
Grant-PnPAzureADAppSitePermission -AppId "aa37b89e-75a7-47e3-bdb6-b763851c61b6" -DisplayName "TestApp" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects
Adds permissions for the Azure Active Directory application registration with the specific application id and sets the rights to 'Write' access for the site collection at the provided URL
PARAMETERS
-AppId
If specified the permission with that id specified will be retrieved
Type: Guid
Parameter Sets: (All)
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-DisplayName
The display name to set for the application permission you're adding. Only for visual reference purposes, does not need to match the name of the application in Azure Active Directory.
Type: String
Parameter Sets: (All)
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Permissions
Specifies the permissions to set for the Azure Active Directory application registration which can either be Read or Write. Use Set-PnPAzureADAppSitePermission after initially adding these permissions to update it to Manage or FullControl permissions.
Type: String
Parameter Sets: (All)
Required: True
Accepted values: Read, Write
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Site
Optional url to to a site to set the permissions for. Defaults to the current site if not provided.
Type: SitePipeBind
Parameter Sets: (All)
Required: True
Position: Named
Default value: Currently connected to site
Accept pipeline input: False
Accept wildcard characters: False