Skip to content

Commit 31543cb

Browse files
authored
Merge branch 'master' into lamakau/UpdateDocs
2 parents b7200dd + 0c71add commit 31543cb

File tree

3 files changed

+47
-3
lines changed

3 files changed

+47
-3
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

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: 2 additions & 2 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

@@ -310,7 +310,7 @@ Accept wildcard characters: False
310310

311311
Specifies the resource quota in megabytes of the site collection.
312312
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).>
313+
For more information, see [Resource Usage Limits on Sandboxed Solutions in SharePoint](https://msdn.microsoft.com/library/gg615462.aspx).
314314

315315
```yaml
316316
Type: Double

0 commit comments

Comments
 (0)