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
{{ message }}
This repository was archived by the owner on Jan 19, 2021. It is now read-only.
[CmdletExample(Code=@"PS:> Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe",Remarks=@"This will update an already installed app if a new version is available.",SortOrder=1)]
13
+
publicclassUpdateApp:PnPCmdlet
14
+
{
15
+
[Parameter(Mandatory=true,Position=0,ValueFromPipeline=true,HelpMessage="Specifies the Id or an actual app metadata instance")]
[Parameter(Mandatory=false,HelpMessage="The scope of the CustomAction to add to. Either Web or Site; defaults to Web. 'All' is not valid for this command.",ParameterSetName=ParameterSet_DEFAULT)]
83
+
#if !ONPREMISES
84
+
[Parameter(Mandatory=false,HelpMessage="The scope of the CustomAction to add to. Either Web or Site; defaults to Web. 'All' is not valid for this command.",ParameterSetName=ParameterSet_CLIENTSIDECOMPONENTID)]
Remarks="Retrieves the list item with unique id bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3 from from the tasks lists. This parameter is ignored if the Query parameter is specified.",
27
+
Remarks="Retrieves the list item with unique id bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3 from from the tasks lists",
Remarks="Retrieves all list items, but only includes the values of the Title and GUID fields in the list item object. This parameter is ignored if the Query parameter is specified.",
Code=@"PS:> Get-PnPGroupMembers -Identity 'Marketing Site Members'",
16
+
SortOrder=1,
17
+
Remarks=@"Returns all the users that are a member of the group 'Marketing Site Members' in the current sitecollection")]
18
+
[CmdletExample(
19
+
Code=@"PS:> Get-PnPGroup | Get-PnPGroupMembers",
20
+
SortOrder=2,
21
+
Remarks=@"Returns all the users that are a member of any of the groups in the current sitecollection")]
22
+
[CmdletExample(
23
+
Code=@"PS:> Get-PnPGroup | ? Title -Like 'Marketing*' | Get-PnPGroupMembers",
24
+
SortOrder=3,
25
+
Remarks=@"Returns all the users that are a member of any of the groups of which their name starts with the word 'Marketing' in the current sitecollection")]
26
+
publicclassGetGroupMembers:PnPWebCmdlet
27
+
{
28
+
[Parameter(Mandatory=true,ValueFromPipeline=true,HelpMessage="A group object, an ID or a name of a group")]
0 commit comments