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
The `Get-SPOContainerTypeConfiguration` cmdlet retrieves and returns configuration settings set on a container type created under a SharePoint Embedded application.
29
+
The `Get-SPOContainerTypeConfiguration` cmdlet retrieves and returns configuration settings set on a container type created under a SharePoint Embedded application. This can either be the default value or the previously set value on the container type.
30
30
31
-
You must be a SharePoint Administrator or Global Administrator to run this cmdlet.
31
+
You must be a SharePoint Embedded Administrator to run this cmdlet.
32
32
33
33
## EXAMPLES
34
34
@@ -58,6 +58,10 @@ Default value: None
58
58
Accept pipeline input: False
59
59
Accept wildcard characters: False
60
60
```
61
+
### CommonParameters
62
+
63
+
This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
Copy file name to clipboardExpand all lines: sharepoint/sharepoint-ps/sharepoint-online/Set-SPOApplication.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ This example sets the host URLs for the application with Id 423poi45.
83
83
84
84
### -CopilotEmbeddedChatHosts
85
85
86
-
This parameter is used to add host URLs allowed to use the SharePoint Embedded application's declarative agent experience.
86
+
This parameter is used to add host URLs allowed to use the SharePoint Embedded application's declarative agent experience. This will always be a subset of permissible URLs set by the application's developer. To check the list of permissible URLs, use the `Get-SPOApplication` cmdlet.
For any parameters passed in, the `Set-SPOContainerTypeConfiguration` cmdlet sets or updates the settings for a container type created under a SharePoint Embedded application.
30
32
31
-
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 5 overrides the tenant-level `WhoCanShareAuthenticatedGuestAllowList` with a null value, while leaving the `WhoCanShareAnonymousAllowList` untouched. This has the effect of no longer restricting the privilege of sharing to authenticated guests to members of specific security groups.
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.
185
+
186
+
PARAMVALUE: True | False
187
+
188
+
```yaml
189
+
Type: Boolean
190
+
Parameter Sets: (All)
191
+
Aliases:
192
+
193
+
Required: False
194
+
Position: Named
195
+
Default value: None
196
+
Accept pipeline input: False
197
+
Accept wildcard characters: False
198
+
```
199
+
200
+
### -WhoCanShareAnonymousAllowList
201
+
202
+
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`.
203
+
204
+
> [!NOTE]
205
+
> This allow list only accepts security groups, and not Microsoft 365 Groups.
206
+
207
+
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.
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
+
### -WhoCanShareAuthenticatedGuestAllowList
222
+
223
+
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`.
224
+
225
+
> [!NOTE]
226
+
> This allow list only accepts security groups, and not Microsoft 365 Groups.
227
+
228
+
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.
229
+
230
+
231
+
```yaml
232
+
Type: Guid[]
233
+
Parameter Sets: (All)
234
+
Aliases:
235
+
236
+
Required: False
237
+
Position: Named
238
+
Default value: None
239
+
Accept pipeline input: False
240
+
Accept wildcard characters: False
241
+
```
242
+
109
243
110
244
### -WhoCanShareAnonymousAllowList
111
245
@@ -183,6 +317,9 @@ Accept pipeline input: False
183
317
Accept wildcard characters: False
184
318
```
185
319
320
+
### CommonParameters
321
+
This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
0 commit comments