Skip to content

Commit 7410504

Browse files
Update m365groupsettings.md
1 parent dd1bdd6 commit 7410504

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

articles/en/Other/m365groupsettings.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ Please remember that the list of settings can be extended or changed at any mome
5555
- **AllowGuestsToAccessGroups**: Determines if guest users are allowed to access group content.
5656
- **GuestUsageGuidelinesUrl**: URL to the guidelines for guest user usage.
5757
- **GroupCreationAllowedGroupId**: Identifies the group of users who are allowed to create new groups.
58-
- **AllowToAddGuests**: Allows group owners to add guest users (same as AllowToAddGuests, possibly a duplicate entry).
5958
- **UsageGuidelinesUrl**: URL to the usage guidelines for groups.
6059
- **ClassificationList**: Defines the list of available classification labels for groups.
6160
- **EnableGroupCreation**: Specifies if group creation is enabled for users.
@@ -75,9 +74,17 @@ Please remember that the list of settings can be extended or changed at any mome
7574

7675

7776
# Set
78-
Use Set-PnPMicrosoft365GroupSettings to set different settings.
77+
Use Set-PnPMicrosoft365GroupSettings to set different settings. The full documentation can be found here: [Set-PnPMicrosoft365GroupSettings](https://pnp.github.io/powershell/cmdlets/Set-PnPMicrosoft365GroupSettings.html)
7978

80-
<img src="/articles/images/m365groupsettings8.PNG" width="600" >
79+
When modifying Microsoft 365 Group Settings, make sure you use the correct template ID, and that the specific settings is available in that template. Not all settings are avaialble in all templates. You can check your templates using Get-PnPMicrosoft365GroupSettingTemplates.
80+
81+
Same as you could check the settings for the entire Microsoft 365 tenant or a Microsoft 365 group, you can also set the settings for the entire tenant or a specific Microsoft 365 group.
82+
83+
```
84+
Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{"EnableGroupCreation"="true"}
85+
86+
Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{"EnableGroupCreation"="true"} -Group $groupId
87+
```
8188
<br/><br/>
8289

8390

@@ -90,6 +97,7 @@ Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{"AllowToAdd
9097
```
9198

9299
we can modify the following setting:
100+
93101
<img src="/articles/images/m365groupsettings7.PNG" width="600" >
94102

95103

0 commit comments

Comments
 (0)