Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added DESCRIPTION section
Just copied SYNOPSIS for now
  • Loading branch information
Linda Caputo committed Mar 13, 2018
commit ebcb2a928d699ca7a9012c227d88d5fe1f9065be
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ Add-SPOSiteDesign
[<CommonParameters>]
```

## DESCRIPTION

Creates a new site design available to users when they create a new site from the SharePoint home page.

## EXAMPLES

### Example 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Add-SPOSiteScript
[<CommonParameters>]
```

## DESCRIPTION

Uploads a new site script for use either directly or in a site design.

## EXAMPLES

### Example 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ Get-SPOSiteDesign
[<CommonParameters>]
```

## DESCRIPTION

Gets details about site designs that are on the SharePoint tenant. You can specify an ID of a specific site design to retrieve. If there are no parameters listed, details about all site designs are listed.

## EXAMPLES

### Example 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ Get-SPOSiteDesignRights
[<CommonParameters>]
```

## DESCRIPTION

Displays a list of principals and their rights for usage of the site design. This can be used to determine the scope that your site design has with users on the tenant.

## EXAMPLES

### Example 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ Get-SPOSiteScript
[<CommonParameters>]
```

## DESCRIPTION

Displays information about existing site scripts. When no parameter is provided, this cmdlet returns the **Id**, **Title**, **Description**, and **Version** of each site script. When a site script ID is provided, this cmdlet also returns the **Content**, which is the JSON of the site script.

## EXAMPLES

### Example 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Grant-SPOSiteDesignRights
[<CommonParameters>]
```

## DESCRIPTION

Used to apply permissions to a set of users or a security group, effectively scoping the visibility of the site design in the UX. They start off public, but after you set permissions, only those groups or users with permissions can access the site design.

## EXAMPLES

### Example 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ Invoke-SPOSiteDesign
[<CommonParameters>]
```

## DESCRIPTION

Applies a published site design to a specified site collection target. This allows a site design to be applied to an existing site collection.

## EXAMPLES

### Example 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ Removes a site design. It no longer appears in the UI for creating a new site.
[<CommonParameters>]
```

## DESCRIPTION

Removes a site design. It no longer appears in the UI for creating a new site.

## EXAMPLES

### Example 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ Remove-SPOSiteScript
[<CommonParameters>]
```

## DESCRIPTION

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.) -->
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can remove this TBD as I followed up separately with PM on this.


## PARAMETERS

### -Identity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ Revoke-SPOSiteDesignRights
[<CommonParameters>]
```

## DESCRIPTION

Revokes rights for specified principals from a site design.

## EXAMPLES

### Example 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ C:\> Set-SPOSiteDesign `
-PreviewImageAltText "site preview - version 2"
```

## DESCRIPTION

Updates a previously uploaded site design.

## PARAMETERS

### -Title
Expand Down