Skip to content

Commit 6f2b3b5

Browse files
committed
Roadmap updated with store indication and upates to theme PowerShell cmdlet naming
1 parent 224c9ef commit 6f2b3b5

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

docs/declarative-customization/site-theming/sharepoint-site-theming-powershell.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ To run the PowerShell cmdlets for theme management, you'll need to do the follow
1111
1. Download and install the [SharePoint Online Management Shell](https://www.microsoft.com/en-us/download/details.aspx?id=35588). If you already have a previous version of the shell installed, uninstall it first and then install the latest version.
1212
2. Follow the instructions at [Connect to SharePoint Online PowerShell](https://technet.microsoft.com/en-us/library/fp161372.aspx) to connect to your SharePoint tenant.
1313

14-
To verify your setup, try using the **Get-HideDefaultThemes** cmdlet to read the HideDefaultThemes setting. If the cmdlet runs and returns False with no errors, as shown in the following example, you're ready to proceed.
14+
To verify your setup, try using the **Get-SPOHideDefaultThemes** cmdlet to read the SPOHideDefaultThemes setting. If the cmdlet runs and returns False with no errors, as shown in the following example, you're ready to proceed.
1515

1616
```powershell
17-
c:\> Get-HideDefaultThemes
17+
c:\> Get-SPOHideDefaultThemes
1818
False
1919
```
2020
## Site theme cmdlets
@@ -24,8 +24,8 @@ The following cmdlets are available for managing site themes from PowerShell:
2424
* **Add-SPOTheme** — Creates a new custom theme, or overwrites an existing theme to modify its settings.
2525
* **Get-SPOTheme** — Retrieves settings for an existing theme.
2626
* **Remove-SPOTheme** — Removes a theme from the theme gallery.
27-
* **Set-HideDefaultThemes** — Specifies whether the default themes should be available.
28-
* **Get-HideDefaultThemes** — Queries the current HideDefaultThemes setting.
27+
* **Set-SPOHideDefaultThemes** — Specifies whether the default themes should be available.
28+
* **Get-SPOHideDefaultThemes** — Queries the current SPOHideDefaultThemes setting.
2929

3030
## Add-SPOTheme
3131

@@ -131,32 +131,34 @@ The **Remove-SPOTheme** cmdlet removes a theme from your tenant store. For examp
131131
```powershell
132132
c:\> Remove-SPOTheme -Name "Custom Cyan"
133133
```
134-
## Set-HideDefaultThemes
134+
## Set-SPOHideDefaultThemes
135135

136-
_NOTE: this cmdlet will be renamed to ```Set-SPOHideDefaultThemes``` in a future release, for consistency with other SharePoint PowerShell cmdlet._
136+
> [!NOTE]
137+
> this cmdlet was named as ```Set-HideDefaultThemes``` until December 2017 release of SPO Management Shell. We recommend that you'd use the latest version of the PowerShell cmdlets.
137138
138-
The **Set-HideDefaultThemes** cmdlet is used to specify whether the default themes that come with SharePoint should be included in the theme picker list. For example, you might want to create custom themes for your sites and then remove the default themes, to ensure that all pages will use your custom themes.
139+
The **Set-SPOHideDefaultThemes** cmdlet is used to specify whether the default themes that come with SharePoint should be included in the theme picker list. For example, you might want to create custom themes for your sites and then remove the default themes, to ensure that all pages will use your custom themes.
139140

140141
Specify the setting as either _$true_ to hide the default themes, or _$false_ (the default setting) to allow use of the default themes. For example, this cmdlet hides the default themes.
141142

142143
```powershell
143-
Set-HideDefaultThemes $true
144+
Set-SPOHideDefaultThemes $true
144145
```
145146
After creating the "Custom Cyan" theme, hiding the default themes will leave only the one custom theme in the themes list under **Change the look**.
146147

147148
To restore the default themes to the theme picker list, use the following cmdlet.
148149
```powershell
149-
Set-HideDefaultThemes $false
150+
Set-SPOHideDefaultThemes $false
150151
```
151152

152-
## Get-HideDefaultThemes
153+
## Get-SPOHideDefaultThemes
153154

154-
_NOTE: this cmdlet will be renamed to ```Get-SPOHideDefaultThemes``` in a future release, for consistency with other SharePoint PowerShell cmdlets._
155+
> [!NOTE]
156+
> this cmdlet was named as ```Get-HideDefaultThemes``` until December 2017 release of SPO Management Shell. We recommend that you'd use the latest version of the PowerShell cmdlets.
155157
156-
The **Get-HideDefaultThemes** cmdlet retrieves the currrent **Set-HideDefaultThemes** setting. You might want to use this cmdlet in a PowerShell script to read the setting and then take different actions based on whether the default themes are hidden. This cmdlet does not have any parameters.
158+
The **Get-SPOHideDefaultThemes** cmdlet retrieves the currrent **Set-SPOHideDefaultThemes** setting. You might want to use this cmdlet in a PowerShell script to read the setting and then take different actions based on whether the default themes are hidden. This cmdlet does not have any parameters.
157159

158160
```powershell
159-
c:\> Get-HideDefaultThemes
161+
c:\> Get-SPOHideDefaultThemes
160162
False
161163
```
162164

docs/spfx/roadmap.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ First release of the SharePoint Framework contained only support for client-side
2525

2626
- Easy access to Graph API to access user specific information (GraphHttpClient in preview)
2727
- Site level WebHooks
28+
- Updated 'store' story with SharePoint Framework support
2829

2930
## Client-side web parts++ and add-ins
3031

0 commit comments

Comments
 (0)