You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For any parameters passed in, the `Set-SPOContainerTypeConfiguration` cmdlet sets or updates the settings for a container type created under a SharePoint Embedded application.
27
32
28
-
You must be a SharePoint Administrator or Global Administrator to run this cmdlet.
33
+
You must be a SharePoint Embedded Administrator to run this cmdlet.
Example 2 turns on an open sharing model for this container type. Any container members and guest users with edit permissions can share files created within the container type.
This setting determines if the container type `WhoCanShareAnonymousAllowList` overrides the tenant-level `WhoCanShareAnonymousAllowList`. The default value for this parameter is false.
This setting determines if the container type `WhoCanShareAuthenticatedGuestAllowList` overrides the tenant-level `WhoCanShareAuthenticatedGuestAllowList`. The default value for this parameter is false.
163
+
164
+
PARAMVALUE: True | False
165
+
166
+
```yaml
167
+
Type: Boolean
168
+
Parameter Sets: (All)
169
+
Aliases:
170
+
171
+
Required: False
172
+
Position: Named
173
+
Default value: None
174
+
Accept pipeline input: False
175
+
Accept wildcard characters: False
176
+
```
177
+
178
+
### -WhoCanShareAnonymousAllowList
179
+
180
+
Sets a container type-specific list of security groups who are allowed to share with anonymous (non-authenticated) users as well as authenticated guest users. This must be set in conjunction with `OverrideTenantWhoCanShareAnonymousAllowList`.
181
+
182
+
> [!NOTE]
183
+
> This allow list only accepts security groups, and not Microsoft 365 Groups.
184
+
185
+
Each security group is denoted by its GUID object ID. To set this list to be a specific security group, you need to enter its GUID as the parameter. You can enter multiple GUIDs by using a comma to separate them. To skip the check and allow all security groups to share to anyone, set this allow list and the `WhoCanShareAuthenticatedGuestAllowList` to null arrays.
186
+
187
+
```yaml
188
+
Type: Guid[]
189
+
Parameter Sets: (All)
190
+
Aliases:
191
+
192
+
Required: False
193
+
Position: Named
194
+
Default value: None
195
+
Accept pipeline input: False
196
+
Accept wildcard characters: False
197
+
```
198
+
199
+
### -WhoCanShareAuthenticatedGuestAllowList
200
+
201
+
Sets a container type-specific list of security groups who are allowed to share with authenticated guest users at the container level. This must be set in conjunction with `OverrideTenantWhoCanShareAuthenticatedGuestAllowList`.
202
+
203
+
> [!NOTE]
204
+
> This allow list only accepts security groups, and not Microsoft 365 Groups.
205
+
206
+
Each security group is denoted by its GUID object ID. To set this list to be a specific security group, you need to enter its GUID as the parameter. You can enter multiple GUIDs by using a comma to separate them. To skip the check and allow all security groups to share to authenticated guests, set this allow list to a null array.
207
+
208
+
209
+
```yaml
210
+
Type: Guid[]
211
+
Parameter Sets: (All)
212
+
Aliases:
213
+
214
+
Required: False
215
+
Position: Named
216
+
Default value: None
217
+
Accept pipeline input: False
218
+
Accept wildcard characters: False
219
+
```
220
+
221
+
### CommonParameters
222
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
0 commit comments