Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ The following details are returned:

- CopilotEmbeddedChatHosts

- MajorVersionLimit

```yaml
Type: System.Guid
Parameter Sets: (All)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Sets or updates one or more configuration of a SharePoint Embedded application.
Set-SPOApplication [-OwningApplicationId] <Guid> [[-SharingCapability] <SharingCapabilities>]
[[-OverrideTenantSharingCapability] <Boolean>]
[[-CopilotEmbeddedChatHosts] <System.Collections.Generic.List`1[System.String]>]
[[-MajorVersionLimit] <Int>]
[<CommonParameters>]
```

Expand Down Expand Up @@ -69,6 +70,13 @@ Set-SPOApplication -OwningApplicationId 423poi45 -CopilotEmbeddedChatHosts "http
```
This example sets the host URLs for the application with Id 423poi45.

### Example 5

```powershell
Set-SPOApplication -OwningApplicationId 423poi45 -MajorVersionLimit 1000
```
This example sets the MajorVersionLimit to 1000.

## PARAMETERS

### -CopilotEmbeddedChatHosts
Expand Down Expand Up @@ -122,6 +130,22 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -MajorVersionLimit

This parameter is used to override MajorVersionLimit for container types.

```yaml
Type: Int
Parameter Sets: (All)
Aliases:

Required: False
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -SharingCapability

Determines what level of sharing is available for the SharePoint Embedded Application.
Expand Down
Loading