You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/declarative-customization/site-design-overview.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ You create site designs and register them in SharePoint to one of the modern tem
24
24
25
25
1. Choose **Communication site**.
26
26
27
-
The communication site has a **Choose a design** box in which the following three site designs are available out-of-the-box.
27
+
The communication site has a **Choose a design** box in which comes with the following site designs.
28
28
29
29
- Topic
30
30
- Showcase
@@ -34,7 +34,7 @@ These are the default site designs. For each site design there is a title, descr
34
34
35
35

36
36
37
-
Had you chosen the team site template, it contains only one default site design named **Team site**. For additional information on how you can change the default site designs, see [Applying a site design to a default SharePoint template](customize-default-site-design.md).
37
+
Had you chosen the team site template, it contains only one default site design named **Team site**. For additional information on how you can change the default site designs, see [Customize a default site design](customize-default-site-design.md).
38
38
39
39
Once a site design is selected, SharePoint creates the new site, and runs site scripts for the site design. The site scripts detail the work such as creating new lists, or applying a theme. When the actions in the scripts are completed, SharePoint displays detailed results of those actions in a progress pane.
40
40
@@ -230,13 +230,13 @@ By default a site design can be viewed by everyone when it is created. Scopes ar
Copy file name to clipboardExpand all lines: docs/declarative-customization/site-design-powershell.md
+47-10Lines changed: 47 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ Add-SPOSiteDesign
67
67
|[-Description]| The display description of site design. |
68
68
|[-PreviewImageUrl]| The URL of a preview image. If none is specified SharePoint will use a generic image. |
69
69
|[-PreviewImageAltText]| The alt text description of the image for accessibility. |
70
-
|[-IsDefault]| A switch that if provided, applies the site design to the default site template. <!--For more information see [Applying a site design to a default SharePoint template](site-design-apply-default-template.md)-->|
70
+
|[-IsDefault]| A switch that if provided, applies the site design to the default site template. For more information see [Customize a default site design](customize-default-site-design.md)|
71
71
72
72
Here's an example of creating a new site design.
73
73
@@ -83,7 +83,8 @@ C:\> Add-SPOSiteDesign `
83
83
84
84
## **Add-SPOSiteScript**
85
85
86
-
Uploads a new site script to the gallery for use either directly or in a site design. This cmdlet will support inline script; file
86
+
Uploads a new site script to the gallery for use either directly or in a site design.
87
+
<!-- TBD does it really appear in the gallery? -->
87
88
88
89
```powershell
89
90
Add-SPOSiteScript
@@ -134,9 +135,7 @@ Here's an example and sample response of getting site design details.
Used to apply permissions to set of users or security group, effectively scoping visibility of site design in UX. They start off public. But once you set permissions, only those groups or users with permissions can access the site design.
@@ -214,7 +233,7 @@ Here's an example of how to grant view rights on a site design to Nestor (a user
214
233
```powershell
215
234
PS C:\> Grant-SPOSiteDesignRights `
216
235
-Identity 44252d09-62c4-4913-9eb0-a2a8b8d7f863 `
217
-
-Principals "nestorw@contoso.sharepoint.com" `
236
+
-Principals "nestorw@contoso.onmicrosoft.com" `
218
237
-Rights View
219
238
```
220
239
@@ -234,6 +253,12 @@ Removes a site design. It will no longer appear in the UI for creating a new sit
234
253
|--------------|--------------|
235
254
|[-Identity]| The ID of the site design to remove. |
236
255
256
+
Here's an example that shows how to remove a site design.
257
+
258
+
```powershell
259
+
260
+
```
261
+
237
262
## Remove-SPOSiteScript
238
263
239
264
Removes a site script. <!-- TBD how is dependency problem handled so you don't delete a script that a design depends on. this currently creates an error when running the design.) -->
@@ -250,6 +275,10 @@ Remove-SPOSiteScript
250
275
|--------------|--------------|
251
276
|[-Identity]| The ID of the site script to remove. |
0 commit comments