Skip to content

Commit 910809f

Browse files
committed
Merge branch 'master' into ChrisdaCopyOfQinezh-test
2 parents 1d093e3 + 7f3b189 commit 910809f

File tree

13 files changed

+199
-17
lines changed

13 files changed

+199
-17
lines changed

exchange/exchange-ps/exchange/Connect-ExchangeOnline.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Connect-ExchangeOnline
3636
[-PageSize <UInt32>]
3737
[-Prefix <String>]
3838
[[-PSSessionOption] <PSSessionOption>]
39+
[ShowBanner]
3940
[-ShowProgress <Boolean>]
4041
[-TrackPerformance <Boolean>]
4142
[-UseMultithreading <Boolean>]
@@ -56,7 +57,7 @@ Connect-ExchangeOnline -Credential $UserCredential
5657

5758
The first command gets the user credentials and stores them in the $UserCredential variable.
5859

59-
The second command connects the current PowerShell session using the credentials in the $UserCredential, which isn't MFA enabled. Note that after the second command is complete, the password key in the $UserCredential variable becomes empty.
60+
The second command connects the current PowerShell session using the credentials in the $UserCredential, which isn't MFA enabled.
6061

6162
After the Connect-ExchangeOnline command is successful, you can run ExO V2 module cmdlets and older remote PowerShell cmdlets.
6263

@@ -284,6 +285,26 @@ Accept pipeline input: False
284285
Accept wildcard characters: False
285286
```
286287

288+
### -ShowBanner
289+
The ShowBanner switch shows or hides the banner message that's displayed when you run Connect-ExchangeOnline. You don't need to specify a value with this switch.
290+
291+
To show the banner, you don't need to use this switch (the banner is displayed by default).
292+
293+
To hide the banner, use this exact syntax: `-ShowBanner:$false`.
294+
295+
```yaml
296+
Type: SwitchParameter
297+
Parameter Sets: (All)
298+
Aliases:
299+
Applicable: Exchange Online
300+
301+
Required: False
302+
Position: Named
303+
Default value: $true
304+
Accept pipeline input: False
305+
Accept wildcard characters: False
306+
```
307+
287308
### -ShowProgress
288309
The ShowProgress parameter shows a visual progress bar in the PowerShell client module. The progress bar shows number of objects received and total number of objects requested. Valid values are:
289310

exchange/exchange-ps/exchange/Get-EXOMailbox.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,12 +335,12 @@ Accept wildcard characters: False
335335
### -PropertySets
336336
The PropertySets parameter specifies a logical grouping of properties that are returned in the output of this cmdlet. Valid values are:
337337

338+
- All
339+
338340
- Minimum (this is the default value)
339341

340342
- AddressList
341343

342-
- Audit
343-
344344
- Archive
345345

346346
- Audit
@@ -371,7 +371,7 @@ The PropertySets parameter specifies a logical grouping of properties that are r
371371

372372
- StatisticsSeed
373373

374-
You can specify multiple values separated by commas. Wildcards ( * ) are supported.
374+
You can specify multiple values separated by commas.
375375

376376
For more information about the properties that are included in each property set, see [Get-EXOMailbox property sets](https://docs.microsoft.com/powershell/exchange/exchange-online/exchange-online-powershell-v2/cmdlet-property-sets#get-exomailbox-property-sets).
377377

exchange/exchange-ps/exchange/Remove-ComplianceTag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Accept wildcard characters: False
9898
```
9999
100100
### -WhatIf
101-
The WhatIf switch doesn't work in Office 365 Security & Compliance Center PowerShell.
101+
The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes.
102102
103103
```yaml
104104
Type: SwitchParameter

exchange/exchange-ps/exchange/Remove-Label.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ For information about the parameter sets in the Syntax section below, see [Excha
2424
```
2525
Remove-Label [-Identity] <ComplianceRuleIdParameter>
2626
[-Confirm]
27+
[-ForceDeletion]
28+
[-WhatIf]
2729
[<CommonParameters>]
2830
```
2931

@@ -83,6 +85,38 @@ Accept pipeline input: False
8385
Accept wildcard characters: False
8486
```
8587
88+
### -ForceDeletion
89+
The ForceDeletion switch forces the removal of the label. You don't need to specify a value with this switch.
90+
91+
```yaml
92+
Type: SwitchParameter
93+
Parameter Sets: (All)
94+
Aliases:
95+
Applicable: Office 365 Security & Compliance Center
96+
97+
Required: False
98+
Position: Named
99+
Default value: None
100+
Accept pipeline input: False
101+
Accept wildcard characters: False
102+
```
103+
104+
### -WhatIf
105+
The WhatIf switch causes the command to simulate its results. By using this switch, you can view what changes would occur without having to commit those changes.
106+
107+
```yaml
108+
Type: SwitchParameter
109+
Parameter Sets: (All)
110+
Aliases: wi
111+
Applicable: Office 365 Security & Compliance Center
112+
113+
Required: False
114+
Position: Named
115+
Default value: None
116+
Accept pipeline input: False
117+
Accept wildcard characters: False
118+
```
119+
86120
### CommonParameters
87121
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/p/?LinkID=113216).
88122

exchange/exchange-ps/exchange/Restore-RecoverableItems.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,13 @@ In Exchange Online, after using the Get-RecoverableItems cmdlet to verify the ex
115115

116116
- Number of mailboxes processed simultaneously: 2
117117

118+
### Example 4
119+
```powershell
120+
Get-RecoverableItems administrator | Restore-RecoverableItems
121+
```
122+
123+
This example bulk restores all the recoverable items for administrator.
124+
118125
## PARAMETERS
119126

120127
### -Identity

exchange/exchange-ps/exchange/Set-OrganizationConfig.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Set-OrganizationConfig
5959
[-DistributionGroupNamingPolicy <DistributionGroupNamingPolicy>]
6060
[-ElcProcessingDisabled <Boolean>]
6161
[-EndUserDLUpgradeFlowsDisabled <Boolean>]
62+
[-ExternalInOutlookEnabled <Boolean>]
6263
[-EwsAllowEntourage <Boolean>]
6364
[-EwsAllowList <MultiValuedProperty>]
6465
[-EwsAllowMacOutlook <Boolean>]
@@ -1440,6 +1441,30 @@ Accept pipeline input: False
14401441
Accept wildcard characters: False
14411442
```
14421443

1444+
### -ExternalInOutlookEnabled
1445+
This parameter is available only in the cloud-based service.
1446+
1447+
The ExternalInOutlookEnabled parameter specifies whether to add identifiers to messages from external senders in Outlook on the web (formerly known as Outlook Web App). Valid values are:
1448+
1449+
- $true: External senders are identified as external in list view and the reading pane.
1450+
1451+
- $false: External senders are not identified as external. This is the default value.
1452+
1453+
Whether the sender's ___domain is considered internal or external is controlled by the Set-AcceptedDomain cmdlet.
1454+
1455+
```yaml
1456+
Type: Boolean
1457+
Parameter Sets: Default
1458+
Aliases:
1459+
Applicable: Exchange Online
1460+
1461+
Required: False
1462+
Position: Named
1463+
Default value: None
1464+
Accept pipeline input: False
1465+
Accept wildcard characters: False
1466+
```
1467+
14431468
### -FocusedInboxOn
14441469
This parameter is available only in the cloud-based service.
14451470

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,14 @@ Get-SPOSite -Identity https://contoso.sharepoint.com/sites/groupname -detailed |
101101

102102
This example gets quota details for a Group Site.
103103

104+
### -----------------------EXAMPLE 6-----------------------------
105+
106+
```powershell
107+
Get-SPOSite -Identity https://contoso.sharepoint.com/sites/research | Select InformationSegment
108+
```
109+
110+
This example returns the InformationSegments associated to the site.
111+
104112
## PARAMETERS
105113

106114
### -Detailed
@@ -251,6 +259,21 @@ Accept pipeline input: False
251259
Accept wildcard characters: False
252260
```
253261

262+
### InformationSegment
263+
This parameter displays the segments associated with a site.
264+
265+
It is 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.
266+
267+
**Note**: This parameter is available only in SharePoint Online Management Shell Version 16.0.19927.12000 or later.
268+
269+
```yaml
270+
Type: Collection of GUIDs
271+
Applicable: SharePoint Online
272+
Required: False
273+
Position: Named
274+
Default value: None
275+
```
276+
254277
### CommonParameters
255278

256279
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).

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

Lines changed: 46 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ For any parameters that are passed in, the `Set-SPOSite` cmdlet sets or updates
6868

6969
You must be a SharePoint Online administrator or Global Administrator and be a site collection administrator to run the cmdlet.
7070

71-
For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at <https://go.microsoft.com/fwlink/p/?LinkId=251832.>
71+
For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](https://docs.microsoft.com/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell?view=sharepoint-ps).
7272

7373
## EXAMPLES
7474

@@ -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

@@ -310,7 +325,7 @@ Accept wildcard characters: False
310325

311326
Specifies the resource quota in megabytes of the site collection.
312327
The default value is 0.
313-
For more information, see Resource Usage Limits on Sandboxed Solutions in SharePoint (<https://msdn.microsoft.com/en-us/library/gg615462.aspx).>
328+
For more information, see [Resource Usage Limits on Sandboxed Solutions in SharePoint](https://msdn.microsoft.com/library/gg615462.aspx).
314329

315330
```yaml
316331
Type: Double
@@ -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

teams/teams-ps/teams/New-Team.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,7 @@ Accept wildcard characters: False
422422
423423
### -GroupId
424424
Specify a GroupId to convert to a Team. If specified, you cannot provide the other values that are already specified by the existing group, namely: Visibility, Alias, Description, or DisplayName.
425+
If, for example, you need to create a Team from an existing Microsoft 365 Group, use the _ExternalDirectoryObjectId_ property value returned by [Get-UnifiedGroup](https://docs.microsoft.com/powershell/module/exchange/get-unifiedgroup?view=exchange-ps).
425426
426427
```yaml
427428
Type: String

whiteboard/whiteboard-ps/whiteboard/Get-Whiteboard.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,37 @@ PS C:\>Get-Whiteboard -UserId 00000000-0000-0000-0000-000000000001
4444

4545
Get all of a user's Whiteboards.
4646

47+
### -------------------------- EXAMPLE 2 --------------------------
48+
49+
```
50+
PS C:\>Get-Whiteboard -UserId 00000000-0000-0000-0000-000000000001 -WhiteboardId 00000000-0000-0000-0000-000000000002
51+
```
52+
53+
Get user's specific Whiteboard.
54+
55+
56+
### Response
57+
58+
```yaml
59+
baseApi : baseApi-value
60+
id : whiteboardId-value
61+
userId : userId-value
62+
folioId : folioId-value
63+
title : title-value
64+
createdBy : createdBy-value
65+
ownerId : ownerId-value
66+
ownerTenantId : ownerTenantId-value
67+
isShared : isShared-value
68+
createdTime : createdTime-value
69+
invitedTime : invitedTime-value
70+
personalLastModifiedTime : personalLastModifiedTime-value
71+
lastModifiedTime : lastModifiedTime-value
72+
globalLastViewedTime : globalLastViewedTime-value
73+
lastViewedTime : lastViewedTime-value
74+
meetingId : meetingId-value
75+
eTag : eTag-value
76+
```
77+
4778
4879
## PARAMETERS
4980
@@ -98,6 +129,6 @@ Applicable: Microsoft Whiteboard
98129
99130
## NOTES
100131
101-
For details on user IDs, see the [overview page](whiteboard.md).
132+
For details on user IDs, see the [overview page](../../docs-conceptual/overview.md).
102133
103134
## RELATED LINKS

0 commit comments

Comments
 (0)