Skip to content

Commit 31aba87

Browse files
author
rongqizhou
committed
add note for satellite geo admin could not add new theme
1 parent 7026a36 commit 31aba87

File tree

1 file changed

+7
-2
lines changed
  • sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell

1 file changed

+7
-2
lines changed

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPOTheme.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ Get-SPOTheme [[-Name] <String>] [<CommonParameters>]
2424

2525
The **Get-SPOTheme** cmdlet returns the settings for a named existing theme, or for all uploaded themes if no name is provided.
2626

27+
> [!NOTE]
28+
> For multi-geo tenants, primary geo admins can centrally manage themes. Satellite geo admins can't create new themes, but they can edit or delete themes they previously added. To make it clear which themes can be modified, we added an editable field.
29+
2730
## EXAMPLES
2831

2932
### Example 1
@@ -44,7 +47,8 @@ Get-SPOTheme -Name "Custom Cyan" | ConvertTo-Json -Depth 4
4447
{"accentColor": "#FFFFFF", "backgroundColor": "#0078D4"}
4548
]
4649
},
47-
"IsInverted": false
50+
"IsInverted": false,
51+
"Editable": true
4852
}
4953
```
5054

@@ -80,7 +84,8 @@ If the theme is in legacy format, the output will be:
8084
"primaryText": "#333",
8185
"themePrimary": "#00ffff"
8286
},
83-
"IsInverted": false
87+
"IsInverted": false,
88+
"Editable": true
8489
}
8590
```
8691

0 commit comments

Comments
 (0)