Set-PnPUnifiedGroup
SYNOPSIS
Sets Office 365 Group (aka Unified Group) properties. Requires the Azure Active Directory application permission 'Group.ReadWrite.All'.
SYNTAX
DESCRIPTION
EXAMPLES
EXAMPLE 1
Set-PnPUnifiedGroup -Identity $group -DisplayName "My Displayname"
Sets the display name of the group where $group is a Group entity
EXAMPLE 2
Set-PnPUnifiedGroup -Identity $groupId -Descriptions "My Description" -DisplayName "My DisplayName"
Sets the display name and description of a group based upon its ID
EXAMPLE 3
Set-PnPUnifiedGroup -Identity $group -GroupLogoPath ".\MyLogo.png"
Sets a specific Office 365 Group logo.
EXAMPLE 4
Set-PnPUnifiedGroup -Identity $group -IsPrivate:$false
Sets a group to be Public if previously Private.
EXAMPLE 5
Set-PnPUnifiedGroup -Identity $group -Owners demo@contoso.com
Sets demo@contoso.com as owner of the group.