Skip to content

Commit 4503eef

Browse files
authored
Merge branch 'main' into patch-PS
2 parents 776f647 + fb6e3a1 commit 4503eef

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
Anyone who is interested can contribute to the topics. When you contribute, your work will go directly into the content set after being merged. It will then be published to [Microsoft Learn](https://learn.microsoft.com/) and you will be listed as a contributor at: <https://github.com/MicrosoftDocs/OfficeDocs-SharePoint-PowerShell/graphs/contributors>.
66

7+
If you get stuck and are a Microsoft employee or vendor, post a message to [Ask an Admin](https://aka.ms/askanadmin).
8+
79
### Quickly update an article using GitHub.com
810

911
Contributors who only make infrequent or small updates can edit the file directly on GitHub.com without having to install any additional software. This article shows you how. [This two-minute video](https://learn-video.azurefd.net/vod/player?id=b5167c5a-9c69-499b-99ac-e5467882bc92) also covers how to contribute.

sharepoint/sharepoint-ps/sharepoint-online/Set-SPOApplication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ This example disables the override sharing capability, aligning this SharePoint
5959
### Example 2
6060

6161
```powershell
62-
Set-SPOApplication -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 -OverrideTenantSharingCapability $true -SharingCapability -Disabled
62+
Set-SPOApplication -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 -OverrideTenantSharingCapability $true -SharingCapability Disabled
6363
```
6464

6565
This example enables the override, restricting file sharing within the SharePoint Embedded application to internal company users only, regardless of the broader SharePoint Online tenant settings.
@@ -68,7 +68,7 @@ This example enables the override, restricting file sharing within the SharePoin
6868

6969
```powershell
7070
Set-SPOTenant -EnableAzureADB2BIntegration $true
71-
Set-SPOApplication -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 -OverrideTenantSharingCapability $true -SharingCapability -ExternalUserandGuestSharing
71+
Set-SPOApplication -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 -OverrideTenantSharingCapability $true -SharingCapability ExternalUserandGuestSharing
7272
```
7373
This example demonstrates how to enable file sharing within the SharePoint Embedded application for external users. Note that B2B integration must be enabled to allow guest invitations to SharePoint Embedded apps.
7474

sharepoint/sharepoint-ps/sharepoint-online/Set-SPOSite.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ Set-SPOSite
7171
[-RequestFilesLinkExpirationInDays <Int32>]
7272
[-ResourceQuotaWarningLevel <Double>]
7373
[-RestrictContentOrgWideSearch <Boolean>]
74+
[-RestrictedContentDiscoveryforCopilotAndAgents <Boolean>]
7475
[-RestrictedAccessControl <Boolean>]
7576
[-RestrictedAccessControlGroups [Guid[]]]
7677
[-RestrictedToGeo <RestrictedToRegion>]
@@ -1806,6 +1807,22 @@ Accept pipeline input: False
18061807
Accept wildcard characters: False
18071808
```
18081809

1810+
### -RestrictedContentDiscoveryforCopilotAndAgents
1811+
1812+
Sets or updates the site setting to host Agents by activating or deactivating the Restricted Content Discovery (RCD) for Agents. *Currently under private preview.*
1813+
1814+
```yaml
1815+
Type: Boolean
1816+
Parameter Sets: ParamSet1
1817+
Aliases:
1818+
1819+
Required: False
1820+
Position: Named
1821+
Default value: None
1822+
Accept pipeline input: False
1823+
Accept wildcard characters: False
1824+
```
1825+
18091826
### CommonParameters
18101827

18111828
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

0 commit comments

Comments
 (0)