Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 1.11 KB

GetPnPWebPart.md

File metadata and controls

32 lines (27 loc) · 1.11 KB

#Get-PnPWebPart Returns a webpart definition object ##Syntax

Get-PnPWebPart -ServerRelativePageUrl <String>
               [-Identity <WebPartPipeBind>]
               [-Web <WebPipeBind>]

##Returns

System.Collections.Generic.IEnumerable`1[Microsoft.SharePoint.Client.WebParts.WebPartDefinition]

##Parameters

Parameter Type Required Description
Identity WebPartPipeBind False
ServerRelativePageUrl String True Full server relative URL of the webpart page, e.g. /sites/mysite/sitepages/home.aspx
Web WebPipeBind False The web to apply the command to. Omit this parameter to use the current web.
##Examples

###Example 1

PS:> Get-PnPWebPart -ServerRelativePageUrl "/sites/demo/sitepages/home.aspx"

Returns all webparts defined on the given page.

###Example 2

PS:> Get-PnPWebPart -ServerRelativePageUrl "/sites/demo/sitepages/home.aspx" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82

Returns a specific webpart defined on the given page.