Skip to content

Commit d91b6b2

Browse files
authored
Merge branch 'master' into patch-147
2 parents 7ba429e + 552759d commit d91b6b2

11 files changed

+387
-6
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Add-SPOTheme.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ Add-SPOTheme -Identity "Custom Cyan" -Palette $themepalette -IsInverted $false -
8181

8282
### -Identity
8383

84+
Specifies the name of the theme. This must uniquely identify the theme.
85+
8486
```yaml
8587
Type: SpoThemePalettePipeBind
8688
Parameter Sets: (All)
@@ -95,6 +97,8 @@ Accept wildcard characters: False
9597
9698
### -IsInverted
9799
100+
Specifies whether the theme is inverted, with a dark background and a light foreground.
101+
98102
```yaml
99103
Type: Boolean
100104
Parameter Sets: (All)
@@ -109,6 +113,8 @@ Accept wildcard characters: False
109113
110114
### -Overwrite
111115
116+
Overwrites a theme of the same name in case it exists.
117+
112118
```yaml
113119
Type: SwitchParameter
114120
Parameter Sets: (All)
@@ -123,6 +129,8 @@ Accept wildcard characters: False
123129
124130
### -Palette
125131
132+
Specifies the palette of colors in the theme, as a dictionary of theme slot values.
133+
126134
```yaml
127135
Type: SpoThemePalettePipeBind
128136
Parameter Sets: (All)

sharepoint/sharepoint-ps/sharepoint-online/Add-SPOUser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Add-SPOUser -Group <String> -LoginName <String> -Site <SpoSitePipeBind> [<Common
2626

2727
Along with the group memberships that are normally required to run Windows PowerShell, you must have the SharePoint Admin role or Global Administrator role and be a site collection administrator to use the `Add-SPOUser` cmdlet.
2828

29-
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> (<https://go.microsoft.com/fwlink/p/?LinkId=251832).>
29+
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).
3030

3131
## EXAMPLES
3232

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
---
2+
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version:
5+
schema: 2.0.0
6+
applicable: SharePoint Online
7+
title: Get-SPOStructuralNavigationCacheSiteState
8+
author: paramveersisodia
9+
ms.author: paramsis
10+
manager: suyog
11+
ms.reviewer:
12+
---
13+
14+
# Get-SPOStructuralNavigationCacheSiteState
15+
16+
## SYNOPSIS
17+
Get the structural navigation caching state for a site collection.
18+
19+
## SYNTAX
20+
21+
```
22+
Get-SPOStructuralNavigationCacheSiteState -SiteUrl <String> [<CommonParameters>]
23+
```
24+
25+
## DESCRIPTION
26+
The Get-SPOStructuralNavigationCacheSiteState cmdlet can be used to determine if structural navigation caching is enabled or disabled for a site collection. [Learn more](https://support.office.com/article/structural-navigation-and-performance-f163053f-8eca-4b9c-b973-36b395093b43).
27+
28+
## EXAMPLES
29+
30+
### Example 1
31+
```powershell
32+
PS C:\> Get-SPOStructuralNavigationCacheSiteState -weburl "https://contoso.sharepoint.com/sites/product/"
33+
```
34+
35+
This example checks if structural navigation caching is enabled for the entire site collection https://contoso.sharepoint.com/sites/product/. If caching is enabled, then it will return True. If caching is disabled, then it will return False.
36+
37+
## PARAMETERS
38+
39+
### -SiteUrl
40+
Specifies the absolute URL for the site collection's root web being checked for its caching state.
41+
42+
```yaml
43+
Type: String
44+
Parameter Sets: (All)
45+
Aliases:
46+
Applicable: SharePoint Online
47+
Required: True
48+
Position: Named
49+
Default value: None
50+
Accept pipeline input: False
51+
Accept wildcard characters: False
52+
```
53+
54+
### CommonParameters
55+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
56+
57+
## INPUTS
58+
59+
### None
60+
61+
## OUTPUTS
62+
63+
### System.Object
64+
## NOTES
65+
To see the examples, type: "get-help Get-SPOStructuralNavigationCacheSiteState -examples".
66+
67+
For more information, type: "get-help Get-SPOStructuralNavigationCacheSiteState -detailed".
68+
69+
For technical information, type: "get-help Get-SPOStructuralNavigationCacheSiteState -full".
70+
71+
For online help, type: "get-help Get-SPOStructuralNavigationCacheSiteState -online"
72+
73+
74+
## RELATED LINKS
75+
[Get-SPOStructuralNavigationCacheWebState](Get-SPOStructuralNavigationCacheWebState.md)
76+
77+
[Set-SPOStructuralNavigationCacheWebState](Set-SPOStructuralNavigationCacheWebState.md)
78+
79+
[Set-SPOStructuralNavigationCacheSiteState](Set-SPOStructuralNavigationCacheSiteState.md)
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
---
2+
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version:
5+
schema: 2.0.0
6+
applicable: SharePoint Online
7+
title: Get-SPOStructuralNavigationCacheWebState
8+
author: paramveersisodia
9+
ms.author: paramsis
10+
manager: suyog
11+
ms.reviewer:
12+
---
13+
14+
# Get-SPOStructuralNavigationCacheWebState
15+
16+
## SYNOPSIS
17+
Get the structural navigation caching state for a web.
18+
19+
## SYNTAX
20+
21+
```
22+
Get-SPOStructuralNavigationCacheWebState -WebUrl <String> [<CommonParameters>]
23+
```
24+
25+
## DESCRIPTION
26+
The Get-SPOStructuralNavigationCacheWebState cmdlet can be used to determine if structural navigation caching is enabled or disabled for a web in a site collection. [Learn more](https://support.office.com/article/structural-navigation-and-performance-f163053f-8eca-4b9c-b973-36b395093b43).
27+
28+
## EXAMPLES
29+
30+
### Example 1
31+
```powershell
32+
PS C:\> Get-SPOStructuralNavigationCacheWebState -weburl "https://contoso.sharepoint.com/sites/product/electronics"
33+
```
34+
35+
This example checks if structural navigation caching is enabled for the web https://contoso.sharepoint.com/sites/product/electronics. If caching is enabled, then it will return True. If caching is disabled, then it will return False.
36+
37+
## PARAMETERS
38+
39+
### -WebUrl
40+
Specifies the absolute URL for the web being checked for its caching state.
41+
42+
```yaml
43+
Type: String
44+
Parameter Sets: (All)
45+
Aliases:
46+
Applicable: SharePoint Online
47+
Required: True
48+
Position: Named
49+
Default value: None
50+
Accept pipeline input: False
51+
Accept wildcard characters: False
52+
```
53+
54+
### CommonParameters
55+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
56+
57+
## INPUTS
58+
59+
### None
60+
61+
## OUTPUTS
62+
63+
### System.Object
64+
## NOTES
65+
To see the examples, type: "get-help Get-SPOStructuralNavigationCacheWebState -examples".
66+
67+
For more information, type: "get-help Get-SPOStructuralNavigationCacheWebState -detailed".
68+
69+
For technical information, type: "get-help Get-SPOStructuralNavigationCacheWebState -full".
70+
71+
For online help, type: "get-help Get-SPOStructuralNavigationCacheWebState -online"
72+
## RELATED LINKS
73+
[Set-SPOStructuralNavigationCacheWebState](Set-SPOStructuralNavigationCacheWebState.md)
74+
75+
[Get-SPOStructuralNavigationCacheSiteState](Get-SPOStructuralNavigationCacheSiteState.md)
76+
77+
[Set-SPOStructuralNavigationCacheSiteState](Set-SPOStructuralNavigationCacheSiteState.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ Accept wildcard characters: False
185185

186186
### -TimeZoneId
187187

188-
Specifies the time zone of the site collection. For more information, see SPRegionalSettings.TimeZones Property (<https://go.microsoft.com/fwlink/p/?LinkId=242912).>
188+
Specifies the time zone of the site collection. For more information, see [SPRegionalSettings.TimeZones Property](https://docs.microsoft.com/dotnet/api/microsoft.sharepoint.spregionalsettings.timezones).
189189

190190
```yaml
191191
Type: Int32

sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOGeoAdministrator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Remove-SPOGeoAdministrator [-LoginName] <String> [<CommonParameters>]
2626

2727
This cmdlet contains a single parameter set.
2828
You may only use parameters from one parameter set and you may not combine parameters from different parameter sets.
29-
For more information about how to use parameter sets, see Cmdlet Parameter Sets (<https://go.microsoft.com/fwlink/?LinkID=187810).>
29+
For more information about how to use parameter sets, see [Cmdlet parameter sets](https://docs.microsoft.com/powershell/scripting/developer/cmdlet/cmdlet-parameter-sets).
3030

3131
The `Remove-SPOGeoAdministrator` cmdlet matches a user or a security group and remove the GeoAdministrator privileges in the SharePoint Organization.
3232

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
---
2+
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version:
5+
schema: 2.0.0
6+
applicable: SharePoint Online
7+
title: Set-SPOStructuralNavigationCacheSiteState
8+
author: paramveersisodia
9+
ms.author: paramsis
10+
manager: suyog
11+
ms.reviewer:
12+
---
13+
14+
# Set-SPOStructuralNavigationCacheSiteState
15+
16+
## SYNOPSIS
17+
Enable or disable caching for all webs in a site collection.
18+
19+
## SYNTAX
20+
21+
```
22+
Set-SPOStructuralNavigationCacheSiteState -SiteUrl <String> -IsEnabled <Boolean> [<CommonParameters>]
23+
```
24+
25+
## DESCRIPTION
26+
The Set-SPOStructuralNavigationCacheSiteState cmdlet can be used to enable or disable caching for all webs in a site collection. [Learn more](https://support.office.com/article/structural-navigation-and-performance-f163053f-8eca-4b9c-b973-36b395093b43).
27+
28+
## EXAMPLES
29+
30+
### Example 1
31+
```powershell
32+
PS C:\> Set-SPOStructuralNavigationCacheSiteState –IsEnabled $true -SiteUrl "https://contoso.sharepoint.com/sites/product/"
33+
```
34+
35+
This example enables caching for all webs in the site collection https://contoso.sharepoint.com/sites/product/.
36+
37+
### Example 2
38+
```powershell
39+
PS C:\> Set-SPOStructuralNavigationCacheSiteState –IsEnabled $false -SiteUrl "https://contoso.sharepoint.com/sites/product/"
40+
```
41+
42+
This example disables caching for all webs in the site collection https://contoso.sharepoint.com/sites/product/.
43+
44+
## PARAMETERS
45+
46+
### -IsEnabled
47+
$true to enable caching, $false to disable caching.
48+
49+
```yaml
50+
Type: Boolean
51+
Parameter Sets: (All)
52+
Aliases:
53+
Applicable: SharePoint Online
54+
Required: True
55+
Position: Named
56+
Default value: None
57+
Accept pipeline input: False
58+
Accept wildcard characters: False
59+
```
60+
61+
### -SiteUrl
62+
Specifies the absolute URL for the site collection's root web that needs its caching state to be set.
63+
64+
```yaml
65+
Type: String
66+
Parameter Sets: (All)
67+
Aliases:
68+
Applicable: SharePoint Online
69+
Required: True
70+
Position: Named
71+
Default value: None
72+
Accept pipeline input: False
73+
Accept wildcard characters: False
74+
```
75+
76+
### CommonParameters
77+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
78+
79+
## INPUTS
80+
81+
### None
82+
83+
## OUTPUTS
84+
85+
### System.Object
86+
## NOTES
87+
To see the examples, type: "get-help Set-SPOStructuralNavigationCacheSiteState -examples".
88+
89+
For more information, type: "get-help Set-SPOStructuralNavigationCacheSiteState -detailed".
90+
91+
For technical information, type: "get-help Set-SPOStructuralNavigationCacheSiteState -full".
92+
93+
For online help, type: "get-help Set-SPOStructuralNavigationCacheSiteState -online"
94+
95+
96+
## RELATED LINKS
97+
[Get-SPOStructuralNavigationCacheWebState](Get-SPOStructuralNavigationCacheWebState.md)
98+
99+
[Set-SPOStructuralNavigationCacheWebState](Set-SPOStructuralNavigationCacheWebState.md)
100+
101+
[Get-SPOStructuralNavigationCacheSiteState](Get-SPOStructuralNavigationCacheSiteState.md)
102+

0 commit comments

Comments
 (0)