Skip to content

Commit 48ad74b

Browse files
authored
Merge pull request MicrosoftDocs#5755 from nibandyo/patch-1
Add and Remove Info barriers parameters
2 parents d27225a + 6c2c9c4 commit 48ad74b

File tree

1 file changed

+44
-4
lines changed

1 file changed

+44
-4
lines changed

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

Lines changed: 44 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,21 @@ Set-SPOSite -Identity https://contoso.sharepoint.com/sites/site1 -SharingDomainR
132132

133133
Example 7 sets the Sharing Capability to allow external users who accept sharing invitations and sign in as authenticated users, and then specifies an email ___domain that is allowed for sharing with the external collaborators.
134134

135+
### -----------------------EXAMPLE 8-----------------------------
136+
137+
```powershell
138+
Set-SPOSite -Identity https://contoso.sharepoint.com/sites/research -AddInformationSegment a17efb47-e3c9-4d85-a188-1cd59c83de32
139+
```
140+
141+
This example adds InformationSegment 'a17efb47-e3c9-4d85-a188-1cd59c83de32' to the site.
142+
143+
### -----------------------EXAMPLE 9-----------------------------
144+
145+
```powershell
146+
Set-SPOSite -Identity https://contoso.sharepoint.com/sites/research -RemoveInformationSegment a17efb47-e3c9-4d85-a188-1cd59c83de32
147+
```
148+
149+
In example, InformationSegment 'a17efb47-e3c9-4d85-a188-1cd59c83de32' is removed from the site.
135150

136151
## PARAMETERS
137152

@@ -833,11 +848,12 @@ Accept wildcard characters: False
833848
### -LimitedAccessFileType
834849

835850
The following parameters can be used with -ConditionalAccessPolicy AllowLimitedAccess for both the organization-wide setting and the site-level setting.
836-
-OfficeOnlineFilesOnly: Allows users to preview only Office files in the browser. This option increases security but may be a barrier to user productivity.
837-
-LimitedAccessFileType WebPreviewableFiles (default): Allows users to preview Office files and other file types (such as PDF files and images) in the browser. Note that the contents of file types other than Office files are handled in the browser. This option optimizes for user productivity but offers less security for files that aren't Office files.
838-
-LimitedAccessFileType OtherFiles: Allows users to download files that can't be previewed, such as .zip and .exe. This option offers less security.
839851

840-
PARAMVALUE: OfficeOnlineFilesOnly | WebPreviewableFiles | OtherFiles
852+
- OfficeOnlineFilesOnly: Allows users to preview only Office files in the browser. This option increases security but may be a barrier to user productivity.
853+
854+
- LimitedAccessFileType WebPreviewableFiles (default): Allows users to preview Office files and other file types (such as PDF files and images) in the browser. Note that the contents of file types other than Office files are handled in the browser. This option optimizes for user productivity but offers less security for files that aren't Office files.
855+
856+
- LimitedAccessFileType OtherFiles: Allows users to download files that can't be previewed, such as .zip and .exe. This option offers less security.
841857

842858
```yaml
843859
Type: SPOLimitedAccessFileType
@@ -850,6 +866,30 @@ Default value: WebPreviewableFiles
850866
Accept pipeline input: False
851867
Accept wildcard characters: False
852868
```
869+
### -AddInformationSegment
870+
871+
This parameter allows you to add a segment to a SharePoint site. This parameter is only applicable for tenants who have enabled Microsoft 365 Information barriers capability. Please read https://docs.microsoft.com/sharepoint/information-barriers documentation to understand Information barriers in SharePoint Online.
872+
873+
**Note**: This parameter is available only in SharePoint Online Management Shell Version 16.0.19927.12000 or later.
874+
875+
```yaml
876+
Type: GUID
877+
Required: False
878+
Position: Named
879+
Default value: None
880+
```
881+
882+
### -RemoveInformationSegment
883+
This parameter allows you to remove a segment from a SharePoint site. This parameter is only applicable for tenants who have enabled Microsoft 365 Information barriers capability. Please read (https://<kaarin to provide the link ) documentation to understand Information barriers with SharePoint Online.
884+
885+
**Note**: This parameter is available only in SharePoint Online Management Shell Version 16.0.19927.12000 or later.
886+
887+
```yaml
888+
Type: GUID
889+
Required: False
890+
Position: Named
891+
Default value: None
892+
```
853893

854894
### CommonParameters
855895

0 commit comments

Comments
 (0)