@@ -172,9 +172,9 @@ Here are the settings defined in the Group.Unified SettingsTemplate. Unless othe
172
172
``` powershell
173
173
$Setting = $template.CreateDirectorySetting()
174
174
```
175
- 4 . Then update AllowAddGuests setting
175
+ 4 . Then update AllowToAddGuests setting
176
176
``` powershell
177
- $Setting["AllowAddGuests "] = $False
177
+ $Setting["AllowToAddGuests "] = $False
178
178
```
179
179
5 . Then apply the setting:
180
180
@@ -228,7 +228,7 @@ These steps read settings at directory level, which apply to all Office groups i
228
228
AllowGuestsToAccessGroups True
229
229
GuestUsageGuidelinesUrl
230
230
GroupCreationAllowedGroupId
231
- AllowAddGuests True
231
+ AllowToAddGuests True
232
232
UsageGuidelinesUrl https://guideline.example.com
233
233
ClassificationList
234
234
EnableGroupCreation True
@@ -265,7 +265,7 @@ This step removes settings at directory level, which apply to all Office groups
265
265
266
266
4 . Set the setting to the required value:
267
267
``` powershell
268
- $SettingCopy["AllowAddGuests "]=$False
268
+ $SettingCopy["AllowToAddGuests "]=$False
269
269
```
270
270
5 . Get the ID of the group you want to apply this setting to:
271
271
``` powershell
@@ -291,7 +291,7 @@ This step removes settings at directory level, which apply to all Office groups
291
291
```
292
292
3 . Update the setting of the group as you need, e.g.
293
293
``` powershell
294
- $Setting["AllowAddGuests "] = $True
294
+ $Setting["AllowToAddGuests "] = $True
295
295
```
296
296
4 . Then get the ID of the setting for this specific group:
297
297
``` powershell
0 commit comments