From f0aa8a352376c2e9054c986f09a902da7c035e36 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Fri, 6 Oct 2023 13:38:55 +0300 Subject: [PATCH 1/7] Feature #1346 - Improved Remove-PnPFlow cmdlet to throw error and add verbose logging --- CHANGELOG.md | 1 + .../PowerPlatform/PowerAutomate/RemoveFlow.cs | 18 +++++++++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b25e9e1e8..9ad882a0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,6 +65,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Improved `Add-PnPFile` cmdlet. It will now automatically checkout the file if `-CheckinType` parameter is specified. [#3403](https://github.com/pnp/powershell/pull/3403) - Improved the error message thrown when using `-ValidateConnection` with `Connect-PnPOnline` and it failing due to i.e. an expired ClientSecret so the reason of the failed connect becomes more clear. [#3440](https://github.com/pnp/powershell/pull/3440) - If a cmdlet gets renamed and an alias gets added for it for backwards compatibility, a cmdlet page for the alias will automatically be created so it can still be found in the documentation [#3455](https://github.com/pnp/powershell/pull/3455) +- Improved `Remove-PnPFlow` cmdlet to throw error if the Flow doesn't exist and also added verbose logging. ### Removed diff --git a/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs b/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs index fec036da4..b8b933913 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs @@ -1,6 +1,7 @@ using PnP.PowerShell.Commands.Base; using PnP.PowerShell.Commands.Base.PipeBinds; using PnP.PowerShell.Commands.Utilities.REST; +using System; using System.Management.Automation; namespace PnP.PowerShell.Commands.PowerPlatform.PowerAutomate @@ -27,7 +28,22 @@ protected override void ExecuteCmdlet() if (Force || ShouldContinue($"Remove flow with name '{flowName}'?", "Remove flow")) { - var result = RestHelper.DeleteAsync>(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + try + { + // Had to add this because DELETE doesn't throw error if invalid Flow Id or Name is provided + WriteVerbose($"Retrieving Flow with name {flowName} in environment ${environmentName}"); + var result = GraphHelper.GetAsync(Connection, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + if (result != null) + { + WriteVerbose($"Attempting to delete Flow with name {flowName}"); + RestHelper.DeleteAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + WriteVerbose($"Flow with name {flowName} deleted"); + } + } + catch + { + throw new Exception($"Cannot find flow with Identity '{flowName}'"); + } } } } From 7e5801592f78a40d20aca06de58a269c74f1f9f7 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 8 Oct 2023 23:44:39 +0200 Subject: [PATCH 2/7] Added PR reference --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ad882a0c..95c21373f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,7 +65,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Improved `Add-PnPFile` cmdlet. It will now automatically checkout the file if `-CheckinType` parameter is specified. [#3403](https://github.com/pnp/powershell/pull/3403) - Improved the error message thrown when using `-ValidateConnection` with `Connect-PnPOnline` and it failing due to i.e. an expired ClientSecret so the reason of the failed connect becomes more clear. [#3440](https://github.com/pnp/powershell/pull/3440) - If a cmdlet gets renamed and an alias gets added for it for backwards compatibility, a cmdlet page for the alias will automatically be created so it can still be found in the documentation [#3455](https://github.com/pnp/powershell/pull/3455) -- Improved `Remove-PnPFlow` cmdlet to throw error if the Flow doesn't exist and also added verbose logging. +- Improved `Remove-PnPFlow` cmdlet to throw error if the Flow doesn't exist and also added verbose logging. [#3474](https://github.com/pnp/powershell/pull/3474) ### Removed From c35a6030c17337faf5d2823aa87e86cb3773782f Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Fri, 10 Nov 2023 18:08:24 +0200 Subject: [PATCH 3/7] Changes as per review comments --- documentation/Remove-PnPFlow.md | 24 +++++++++++++- .../PowerPlatform/PowerAutomate/RemoveFlow.cs | 31 +++++++++++++------ 2 files changed, 44 insertions(+), 11 deletions(-) diff --git a/documentation/Remove-PnPFlow.md b/documentation/Remove-PnPFlow.md index 7ca54e343..c0c3278eb 100644 --- a/documentation/Remove-PnPFlow.md +++ b/documentation/Remove-PnPFlow.md @@ -20,7 +20,7 @@ Removes the specified flow. ```powershell Remove-PnPFlow -Environment -Identity [-AsAdmin] - [-Force] [-Connection ] + [-Force] [-ThrowExceptionIfPowerAutomateNotFound] [-Connection ] ``` ## DESCRIPTION @@ -36,6 +36,14 @@ Remove-PnPFlow -Environment $environment -Identity fba63225-baf9-4d76-86a1-1b42c This removes the specified flow. +### Example 1 +```powershell +$environment = Get-PnPFlowEnvironment +Remove-PnPFlow -Environment $environment -Identity fba63225-baf9-4d76-86a1-1b42c917a182 -ThrowExceptionIfPowerAutomateNotFound +``` + +This removes the specified flow and throws an exception if the specified flow is not present. + ## PARAMETERS ### -AsAdmin @@ -99,6 +107,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ThrowExceptionIfPowerAutomateNotFound +Switch parameter if an exception should be thrown if the requested flow does not exist (true) or if omitted, nothing will be returned in case the flow does not exist + +```yaml +Type: SwitchParameter +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Force If specified, no confirmation question will be asked. diff --git a/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs b/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs index b8b933913..2165089a2 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs @@ -18,6 +18,9 @@ public class RemoveFlow : PnPAzureManagementApiCmdlet [Parameter(Mandatory = false)] public SwitchParameter AsAdmin; + [Parameter(Mandatory = false)] + public SwitchParameter ThrowExceptionIfPowerAutomateNotFound; + [Parameter(Mandatory = false)] public SwitchParameter Force; @@ -28,21 +31,29 @@ protected override void ExecuteCmdlet() if (Force || ShouldContinue($"Remove flow with name '{flowName}'?", "Remove flow")) { - try + WriteVerbose($"Attempting to delete Flow with name {flowName}"); + if (ThrowExceptionIfPowerAutomateNotFound) { - // Had to add this because DELETE doesn't throw error if invalid Flow Id or Name is provided - WriteVerbose($"Retrieving Flow with name {flowName} in environment ${environmentName}"); - var result = GraphHelper.GetAsync(Connection, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); - if (result != null) + try + { + // Had to add this because DELETE doesn't throw error if invalid Flow Id or Name is provided + WriteVerbose($"Retrieving Flow with name {flowName} in environment ${environmentName}"); + var result = GraphHelper.GetAsync(Connection, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + if (result != null) + { + RestHelper.DeleteAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + WriteVerbose($"Flow with name {flowName} deleted"); + } + } + catch { - WriteVerbose($"Attempting to delete Flow with name {flowName}"); - RestHelper.DeleteAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); - WriteVerbose($"Flow with name {flowName} deleted"); + throw new Exception($"Cannot find flow with Identity '{flowName}'"); } } - catch + else { - throw new Exception($"Cannot find flow with Identity '{flowName}'"); + RestHelper.DeleteAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + WriteVerbose($"Flow with name {flowName} deleted"); } } } From f281a6ac392760f898248894217e298441dc2efb Mon Sep 17 00:00:00 2001 From: jennywu Date: Fri, 10 Nov 2023 12:38:37 -0800 Subject: [PATCH 4/7] [FileVersion] Add command to get progress for set version policy --- .../Get-PnPSiteSetVersionPolicyProgress.md | 52 +++++++++++++ .../SharePoint/SetVersionPolicyProgress.cs | 75 +++++++++++++++++++ .../Site/GetSetVersionPolicyProgress.cs | 39 ++++++++++ 3 files changed, 166 insertions(+) create mode 100644 documentation/Get-PnPSiteSetVersionPolicyProgress.md create mode 100644 src/Commands/Model/SharePoint/SetVersionPolicyProgress.cs create mode 100644 src/Commands/Site/GetSetVersionPolicyProgress.cs diff --git a/documentation/Get-PnPSiteSetVersionPolicyProgress.md b/documentation/Get-PnPSiteSetVersionPolicyProgress.md new file mode 100644 index 000000000..ae8903a0f --- /dev/null +++ b/documentation/Get-PnPSiteSetVersionPolicyProgress.md @@ -0,0 +1,52 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Get-PnPSiteSetVersionPolicyProgress.html +external help file: PnP.PowerShell.dll-Help.xml +title: Get-PnPSiteSetVersionPolicyProgress +--- + +# Get-PnPSiteSetVersionPolicyProgress + +## SYNOPSIS +Get the progress of setting version policy for existing document libraries on the site. + +## SYNTAX + +```powershell +Get-PnPSiteSetVersionPolicyProgress [-Connection ] +``` + +## DESCRIPTION +This cmdlet allows retrieval of the progress of setting version policy for existing document libraries on the site. + +## EXAMPLES + +### EXAMPLE 1 +```powershell +Get-PnPSiteSetVersionPolicyProgress +``` + +Returns the progress of setting version policy for existing document libraries on the site. + +## PARAMETERS + +### -Connection +Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection. + +```yaml +Type: PnPConnection +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## RELATED LINKS + +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) +[Microsoft Docs documentation](https://learn.microsoft.com/sharepoint/dev/solution-guidance/modern-experience-site-classification#programmatically-read-the-classification-of-a-site) \ No newline at end of file diff --git a/src/Commands/Model/SharePoint/SetVersionPolicyProgress.cs b/src/Commands/Model/SharePoint/SetVersionPolicyProgress.cs new file mode 100644 index 000000000..0bb6d3f01 --- /dev/null +++ b/src/Commands/Model/SharePoint/SetVersionPolicyProgress.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace PnP.PowerShell.Commands.Model.SharePoint +{ + /// + /// The progress for the request that settting version policy for existing document libraries of the site + /// + public class SetVersionPolicyProgress + { + /// + /// Site Url + /// + public string Url { get; set; } + + /// + /// The workitem Id related to the request + /// + public string WorkItemId { get; set; } + + /// + /// The request status + /// + public string Status { get; set; } + + /// + /// The UTC time user sent the request + /// + public string RequestTimeInUTC { get; set; } + + /// + /// The UTC time the server last processed the request + /// + public string LastProcessTimeInUTC { get; set; } + + /// + /// The UTC time the request completes + /// + public string CompleteTimeInUTC { get; set; } + + /// + /// The lists processed count + /// + public string ListsProcessedInTotal { get; set; } + + /// + /// The lists failed to process count + /// + public string ListsFailedInTotal { get; set; } + + /// + /// Set version policy as AutoExpiration or not + /// + public string EnableAutoTrim { get; set; } + + /// + /// The time limit if the version policy is ExpireAfter + /// + public string ExpireAfterDays { get; set; } + + /// + /// MajorVersionLimit for the versions + /// + public string MajorVersionLimit { get; set; } + + /// + /// MajorWithMinorVersionsLimit for the versions + /// if minor version is enabled + /// + public string MajorWithMinorVersionsLimit { get; set; } + } +} diff --git a/src/Commands/Site/GetSetVersionPolicyProgress.cs b/src/Commands/Site/GetSetVersionPolicyProgress.cs new file mode 100644 index 000000000..036e6e1d0 --- /dev/null +++ b/src/Commands/Site/GetSetVersionPolicyProgress.cs @@ -0,0 +1,39 @@ +using Microsoft.SharePoint.Client; + +using System; +using System.Linq.Expressions; +using System.Management.Automation; +using System.Text.Json; +using PnP.PowerShell.Commands.Model.SharePoint; + +namespace PnP.PowerShell.Commands.Site +{ + [Cmdlet(VerbsCommon.Get, "PnPSiteSetVersionPolicyProgress")] + [OutputType(typeof(PnP.PowerShell.Commands.Model.SharePoint.SetVersionPolicyProgress))] + public class GetSetVersionPolicyProgress : PnPSharePointCmdlet + { + protected override void ExecuteCmdlet() + { + ClientContext.Load(ClientContext.Site, s => s.Url); + var site = ClientContext.Site; + var ret = site.GetProgressForSetVersionPolicyForDocLibs(); + ClientContext.ExecuteQueryRetry(); + + var progress = JsonSerializer.Deserialize(ret.Value); + progress.Url = site.Url; + + if (string.Equals(progress.LastProcessTimeInUTC, DateTime.MinValue.ToString())) + { + progress.LastProcessTimeInUTC = string.Empty; + } + + if (string.Equals(progress.CompleteTimeInUTC, DateTime.MinValue.ToString())) + { + progress.CompleteTimeInUTC = string.Empty; + } + + WriteObject(progress); + } + } +} + From bf7981f079b6ed141870ae5c1ceae7dd7271364e Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sun, 12 Nov 2023 02:41:31 +0000 Subject: [PATCH 5/7] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 8028 +++++++++-------- version.txt | 2 +- 3 files changed, 4028 insertions(+), 4004 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 37899da39..02ed71f88 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -d2ac9319c4d9f1a8c6b23140c2f3657af92aa097 \ No newline at end of file +9a9d8310279f7c74ac72970c62c94e1c0e5b4f84 \ No newline at end of file diff --git a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json index a2a89f8ed..aef7155ef 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9584 @@ [ { - "Command": "Add-PnPAlert -List \"Demo List\"", "Id": 1, + "CommandName": "Add-PnPAlert", "Rank": 1, - "CommandName": "Add-PnPAlert" + "Command": "Add-PnPAlert -List \"Demo List\"" }, { - "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", "Id": 2, + "CommandName": "Add-PnPAlert", "Rank": 2, - "CommandName": "Add-PnPAlert" + "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)" }, { - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 3, + "CommandName": "Add-PnPAlert", "Rank": 3, - "CommandName": "Add-PnPAlert" + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\" -Frequency Daily -Time ((Get-Date).AddDays(1))", "Id": 4, + "CommandName": "Add-PnPAlert", "Rank": 4, - "CommandName": "Add-PnPAlert" + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\" -Frequency Daily -Time ((Get-Date).AddDays(1))" }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg", "Id": 5, + "CommandName": "Add-PnPApp", "Rank": 1, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Id": 6, + "CommandName": "Add-PnPApp", "Rank": 2, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Id": 7, + "CommandName": "Add-PnPApp", "Rank": 3, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Id": 8, + "CommandName": "Add-PnPApp", "Rank": 4, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { - "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", "Id": 9, + "CommandName": "Add-PnPApplicationCustomizer", "Rank": 1, - "CommandName": "Add-PnPApplicationCustomizer" + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}" }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Id": 10, + "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Id": 11, + "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, - "CommandName": "Add-PnPAvailableSiteClassification" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 12, + "CommandName": "Add-PnPAzureADGroupMember", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupMember" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 13, + "CommandName": "Add-PnPAzureADGroupMember", "Rank": 2, - "CommandName": "Add-PnPAzureADGroupMember" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 14, + "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupMember" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 15, + "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupOwner" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 16, + "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 2, - "CommandName": "Add-PnPAzureADGroupOwner" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 17, + "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupOwner" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Id": 18, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 1, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Id": 19, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 2, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Id": 20, + "CommandName": "Add-PnPContentType", "Rank": 1, - "CommandName": "Add-PnPContentType" + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"", "Id": 21, + "CommandName": "Add-PnPContentType", "Rank": 2, - "CommandName": "Add-PnPContentType" + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"" }, { - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Id": 22, + "CommandName": "Add-PnPContentType", "Rank": 3, - "CommandName": "Add-PnPContentType" + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" }, { - "Command": "Add-PnPContentType -Name \"Project Item\"", "Id": 23, + "CommandName": "Add-PnPContentType", "Rank": 4, - "CommandName": "Add-PnPContentType" + "Command": "Add-PnPContentType -Name \"Project Item\"" }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Id": 24, + "CommandName": "Add-PnPContentType", "Rank": 5, - "CommandName": "Add-PnPContentType" + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Id": 25, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Id": 26, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 27, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 28, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Id": 29, + "CommandName": "Add-PnPContentTypeToList", "Rank": 1, - "CommandName": "Add-PnPContentTypeToList" + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" }, { - "Command": "Add-PnPCustomAction -Title \"CollabFooter\" -Name \"CollabFooter\" -Location \"ClientSideExtension.ApplicationCustomizer\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "Id": 30, + "CommandName": "Add-PnPCustomAction", "Rank": 1, - "CommandName": "Add-PnPCustomAction" + "Command": "Add-PnPCustomAction -Title \"CollabFooter\" -Name \"CollabFooter\" -Location \"ClientSideExtension.ApplicationCustomizer\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Id": 31, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 1, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Id": 32, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" }, { - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Id": 33, + "CommandName": "Add-PnPDocumentSet", "Rank": 1, - "CommandName": "Add-PnPDocumentSet" + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" }, { - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "Id": 34, + "CommandName": "Add-PnPEventReceiver", "Rank": 1, - "CommandName": "Add-PnPEventReceiver" + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Id": 35, + "CommandName": "Add-PnPEventReceiver", "Rank": 2, - "CommandName": "Add-PnPEventReceiver" + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "Id": 36, + "CommandName": "Add-PnPEventReceiver", "Rank": 3, - "CommandName": "Add-PnPEventReceiver" + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site" }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Id": 37, + "CommandName": "Add-PnPEventReceiver", "Rank": 4, - "CommandName": "Add-PnPEventReceiver" + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" }, { - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Id": 38, + "CommandName": "Add-PnPField", "Rank": 1, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", "Id": 39, + "CommandName": "Add-PnPField", "Rank": 2, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"" }, { - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"", "Id": 40, + "CommandName": "Add-PnPField", "Rank": 3, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"" }, { - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Id": 41, + "CommandName": "Add-PnPField", "Rank": 4, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Id": 42, + "CommandName": "Add-PnPField", "Rank": 5, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Id": 43, + "CommandName": "Add-PnPField", "Rank": 6, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 44, + "CommandName": "Add-PnPFieldToContentType", "Rank": 1, - "CommandName": "Add-PnPFieldToContentType" + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Id": 45, + "CommandName": "Add-PnPFile", "Rank": 1, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Id": 46, + "CommandName": "Add-PnPFile", "Rank": 2, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Id": 47, + "CommandName": "Add-PnPFile", "Rank": 3, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" }, { - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Id": 48, + "CommandName": "Add-PnPFile", "Rank": 4, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" }, { - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Id": 49, + "CommandName": "Add-PnPFile", "Rank": 5, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Id": 50, + "CommandName": "Add-PnPFile", "Rank": 6, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Id": 51, + "CommandName": "Add-PnPFile", "Rank": 7, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Id": 52, + "CommandName": "Add-PnPFile", "Rank": 8, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 53, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 1, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Id": 54, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 2, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 55, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 3, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 56, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 1, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Id": 57, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Id": 58, + "CommandName": "Add-PnPFileSharingInvite", "Rank": 1, - "CommandName": "Add-PnPFileSharingInvite" + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Id": 59, + "CommandName": "Add-PnPFileSharingInvite", "Rank": 2, - "CommandName": "Add-PnPFileSharingInvite" + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Id": 60, + "CommandName": "Add-PnPFileSharingInvite", "Rank": 3, - "CommandName": "Add-PnPFileSharingInvite" + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Id": 61, + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 1, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Id": 62, + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 2, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Id": 63, + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 3, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Id": 64, + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Id": 65, + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 66, + "CommandName": "Add-PnPFileUserSharingLink", "Rank": 1, - "CommandName": "Add-PnPFileUserSharingLink" + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 67, + "CommandName": "Add-PnPFileUserSharingLink", "Rank": 2, - "CommandName": "Add-PnPFileUserSharingLink" + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", "Id": 68, + "CommandName": "Add-PnPFlowOwner", "Rank": 1, - "CommandName": "Add-PnPFlowOwner" + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit" }, { - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView", "Id": 69, + "CommandName": "Add-PnPFlowOwner", "Rank": 2, - "CommandName": "Add-PnPFlowOwner" + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView" }, { - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare", "Id": 70, + "CommandName": "Add-PnPFlowOwner", "Rank": 3, - "CommandName": "Add-PnPFlowOwner" + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare" }, { - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", "Id": 71, + "CommandName": "Add-PnPFlowOwner", "Rank": 4, - "CommandName": "Add-PnPFlowOwner" + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit" }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 72, + "CommandName": "Add-PnPFolder", "Rank": 1, - "CommandName": "Add-PnPFolder" + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Id": 73, + "CommandName": "Add-PnPFolder", "Rank": 2, - "CommandName": "Add-PnPFolder" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Id": 74, + "CommandName": "Add-PnPFolder", "Rank": 3, - "CommandName": "Add-PnPFolder" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 75, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Id": 76, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 2, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 77, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 3, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 78, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Id": 79, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Id": 80, + "CommandName": "Add-PnPFolderSharingInvite", "Rank": 1, - "CommandName": "Add-PnPFolderSharingInvite" + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Id": 81, + "CommandName": "Add-PnPFolderSharingInvite", "Rank": 2, - "CommandName": "Add-PnPFolderSharingInvite" + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Id": 82, + "CommandName": "Add-PnPFolderSharingInvite", "Rank": 3, - "CommandName": "Add-PnPFolderSharingInvite" + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 83, + "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 1, - "CommandName": "Add-PnPFolderUserSharingLink" + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 84, + "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 2, - "CommandName": "Add-PnPFolderUserSharingLink" + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 85, + "CommandName": "Add-PnPGroupMember", "Rank": 1, - "CommandName": "Add-PnPGroupMember" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Id": 86, + "CommandName": "Add-PnPGroupMember", "Rank": 2, - "CommandName": "Add-PnPGroupMember" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 87, + "CommandName": "Add-PnPHtmlPublishingPageLayout", "Rank": 1, - "CommandName": "Add-PnPHtmlPublishingPageLayout" + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Id": 88, + "CommandName": "Add-PnPHubSiteAssociation", "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation" + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" }, { - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Id": 89, + "CommandName": "Add-PnPHubToHubAssociation", "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation" + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Id": 90, + "CommandName": "Add-PnPHubToHubAssociation", "Rank": 2, - "CommandName": "Add-PnPHubToHubAssociation" + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/toplevelhub\"\r ; Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/thirdlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\"", "Id": 91, + "CommandName": "Add-PnPHubToHubAssociation", "Rank": 3, - "CommandName": "Add-PnPHubToHubAssociation" + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/toplevelhub\"\r ; Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/thirdlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\"" }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Id": 92, + "CommandName": "Add-PnPJavaScriptBlock", "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Id": 93, + "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Id": 94, + "CommandName": "Add-PnPJavaScriptLink", "Rank": 1, - "CommandName": "Add-PnPJavaScriptLink" + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Id": 95, + "CommandName": "Add-PnPJavaScriptLink", "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink" + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Id": 96, + "CommandName": "Add-PnPListDesign", "Rank": 1, - "CommandName": "Add-PnPListDesign" + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { - "Command": "Add-PnPListDesign -Title \"My Company Design\" -SiteScriptIds \"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -ListColor Orange -ListIcon BullseyeTarget -ThumbnailUrl \"https://contoso.sharepoint.com/SiteAssets/site-thumbnail.png\"", "Id": 97, + "CommandName": "Add-PnPListDesign", "Rank": 2, - "CommandName": "Add-PnPListDesign" + "Command": "Add-PnPListDesign -Title \"My Company Design\" -SiteScriptIds \"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -ListColor Orange -ListIcon BullseyeTarget -ThumbnailUrl \"https://contoso.sharepoint.com/SiteAssets/site-thumbnail.png\"" }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Id": 98, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Id": 99, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Id": 100, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 101, + "CommandName": "Add-PnPListItem", "Rank": 1, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 102, + "CommandName": "Add-PnPListItem", "Rank": 2, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Id": 103, + "CommandName": "Add-PnPListItem", "Rank": 3, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Id": 104, + "CommandName": "Add-PnPListItem", "Rank": 4, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Id": 105, + "CommandName": "Add-PnPListItem", "Rank": 5, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Id": 106, + "CommandName": "Add-PnPListItemAttachment", "Rank": 1, - "CommandName": "Add-PnPListItemAttachment" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Id": 107, + "CommandName": "Add-PnPListItemAttachment", "Rank": 2, - "CommandName": "Add-PnPListItemAttachment" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Id": 108, + "CommandName": "Add-PnPListItemAttachment", "Rank": 3, - "CommandName": "Add-PnPListItemAttachment" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Id": 109, + "CommandName": "Add-PnPListItemComment", "Rank": 1, - "CommandName": "Add-PnPListItemComment" + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" }, { - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Id": 110, + "CommandName": "Add-PnPMasterPage", "Rank": 1, - "CommandName": "Add-PnPMasterPage" + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 111, + "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 112, + "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 113, + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 114, + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Id": 115, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Id": 116, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Id": 117, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Id": 118, + "CommandName": "Add-PnPNavigationNode", "Rank": 1, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "Id": 119, + "CommandName": "Add-PnPNavigationNode", "Rank": 2, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Id": 120, + "CommandName": "Add-PnPNavigationNode", "Rank": 3, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Id": 121, + "CommandName": "Add-PnPNavigationNode", "Rank": 4, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Id": 122, + "CommandName": "Add-PnPNavigationNode", "Rank": 5, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Id": 123, + "CommandName": "Add-PnPNavigationNode", "Rank": 6, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Id": 124, + "CommandName": "Add-PnPNavigationNode", "Rank": 7, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Id": 125, + "CommandName": "Add-PnPNavigationNode", "Rank": 8, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Id": 126, + "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 1, - "CommandName": "Add-PnPOrgAssetsLibrary" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", "Id": 127, + "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 2, - "CommandName": "Add-PnPOrgAssetsLibrary" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"" }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Id": 128, + "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3, - "CommandName": "Add-PnPOrgAssetsLibrary" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Id": 129, + "CommandName": "Add-PnPOrgNewsSite", "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite" + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { - "Command": "Add-PnPPage -Name \"NewPage\"", "Id": 130, + "CommandName": "Add-PnPPage", "Rank": 1, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\"" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Id": 131, + "CommandName": "Add-PnPPage", "Rank": 2, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Id": 132, + "CommandName": "Add-PnPPage", "Rank": 3, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Id": 133, + "CommandName": "Add-PnPPage", "Rank": 4, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Id": 134, + "CommandName": "Add-PnPPage", "Rank": 5, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Id": 135, + "CommandName": "Add-PnPPage", "Rank": 6, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Id": 136, + "CommandName": "Add-PnPPage", "Rank": 7, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Id": 137, + "CommandName": "Add-PnPPage", "Rank": 8, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Id": 138, + "CommandName": "Add-PnPPage", "Rank": 9, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Id": 139, + "CommandName": "Add-PnPPage", "Rank": 10, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Id": 140, + "CommandName": "Add-PnPPageImageWebPart", "Rank": 1, - "CommandName": "Add-PnPPageImageWebPart" + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"", "Id": 141, + "CommandName": "Add-PnPPageImageWebPart", "Rank": 2, - "CommandName": "Add-PnPPageImageWebPart" + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"" }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Id": 142, + "CommandName": "Add-PnPPageSection", "Rank": 1, - "CommandName": "Add-PnPPageSection" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Id": 143, + "CommandName": "Add-PnPPageSection", "Rank": 2, - "CommandName": "Add-PnPPageSection" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Id": 144, + "CommandName": "Add-PnPPageTextPart", "Rank": 1, - "CommandName": "Add-PnPPageTextPart" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Id": 145, + "CommandName": "Add-PnPPageTextPart", "Rank": 2, - "CommandName": "Add-PnPPageTextPart" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "Id": 146, + "CommandName": "Add-PnPPageTextPart", "Rank": 3, - "CommandName": "Add-PnPPageTextPart" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"" }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Id": 147, + "CommandName": "Add-PnPPageWebPart", "Rank": 1, - "CommandName": "Add-PnPPageWebPart" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Id": 148, + "CommandName": "Add-PnPPageWebPart", "Rank": 2, - "CommandName": "Add-PnPPageWebPart" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Id": 149, + "CommandName": "Add-PnPPageWebPart", "Rank": 3, - "CommandName": "Add-PnPPageWebPart" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Id": 150, + "CommandName": "Add-PnPPlannerBucket", "Rank": 1, - "CommandName": "Add-PnPPlannerBucket" + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Id": 151, + "CommandName": "Add-PnPPlannerBucket", "Rank": 2, - "CommandName": "Add-PnPPlannerBucket" + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { - "Command": "Add-PnPPlannerRoster", "Id": 152, + "CommandName": "Add-PnPPlannerRoster", "Rank": 1, - "CommandName": "Add-PnPPlannerRoster" + "Command": "Add-PnPPlannerRoster" }, { - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 153, + "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember" + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 154, + "CommandName": "Add-PnPPlannerTask", "Rank": 1, - "CommandName": "Add-PnPPlannerTask" + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 155, + "CommandName": "Add-PnPPlannerTask", "Rank": 2, - "CommandName": "Add-PnPPlannerTask" + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Id": 156, + "CommandName": "Add-PnPPlannerTask", "Rank": 3, - "CommandName": "Add-PnPPlannerTask" + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 157, + "CommandName": "Add-PnPPublishingImageRendition", "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition" + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Id": 158, + "CommandName": "Add-PnPPublishingPage", "Rank": 1, - "CommandName": "Add-PnPPublishingPage" + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Id": 159, + "CommandName": "Add-PnPPublishingPage", "Rank": 2, - "CommandName": "Add-PnPPublishingPage" + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 160, + "CommandName": "Add-PnPPublishingPageLayout", "Rank": 1, - "CommandName": "Add-PnPPublishingPageLayout" + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Id": 161, + "CommandName": "Add-PnPRoleDefinition", "Rank": 1, - "CommandName": "Add-PnPRoleDefinition" + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Id": 162, + "CommandName": "Add-PnPRoleDefinition", "Rank": 2, - "CommandName": "Add-PnPRoleDefinition" + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Id": 163, + "CommandName": "Add-PnPRoleDefinition", "Rank": 3, - "CommandName": "Add-PnPRoleDefinition" + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 164, + "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 165, + "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Id": 166, + "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPSiteCollectionAppCatalog", "Id": 167, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "Command": "Add-PnPSiteCollectionAppCatalog" }, { - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 168, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite", "Id": 169, + "CommandName": "Add-PnPSiteDesign", "Rank": 1, - "CommandName": "Add-PnPSiteDesign" + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite" }, { - "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", "Id": 170, + "CommandName": "Add-PnPSiteDesign", "Rank": 2, - "CommandName": "Add-PnPSiteDesign" + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png" }, { - "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"", "Id": 171, + "CommandName": "Add-PnPSiteDesign", "Rank": 3, - "CommandName": "Add-PnPSiteDesign" + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"" }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Id": 172, + "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 1, - "CommandName": "Add-PnPSiteDesignFromWeb" + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Id": 173, + "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 2, - "CommandName": "Add-PnPSiteDesignFromWeb" + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png", "Id": 174, + "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 3, - "CommandName": "Add-PnPSiteDesignFromWeb" + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png" }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 175, + "CommandName": "Add-PnPSiteDesignTask", "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 176, + "CommandName": "Add-PnPSiteDesignTask", "Rank": 2, - "CommandName": "Add-PnPSiteDesignTask" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Id": 177, + "CommandName": "Add-PnPSiteScript", "Rank": 1, - "CommandName": "Add-PnPSiteScript" + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" }, { - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Id": 178, + "CommandName": "Add-PnPSiteScriptPackage", "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage" + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" }, { - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Id": 179, + "CommandName": "Add-PnPSiteTemplate", "Rank": 1, - "CommandName": "Add-PnPSiteTemplate" + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Id": 180, + "CommandName": "Add-PnPStoredCredential", "Rank": 1, - "CommandName": "Add-PnPStoredCredential" + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Id": 181, + "CommandName": "Add-PnPStoredCredential", "Rank": 2, - "CommandName": "Add-PnPStoredCredential" + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", "Id": 182, + "CommandName": "Add-PnPStoredCredential", "Rank": 3, - "CommandName": "Add-PnPStoredCredential" + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"" }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Id": 183, + "CommandName": "Add-PnPTaxonomyField", "Rank": 1, - "CommandName": "Add-PnPTaxonomyField" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Id": 184, + "CommandName": "Add-PnPTaxonomyField", "Rank": 2, - "CommandName": "Add-PnPTaxonomyField" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Id": 185, + "CommandName": "Add-PnPTeamsChannel", "Rank": 1, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Id": 186, + "CommandName": "Add-PnPTeamsChannel", "Rank": 2, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Id": 187, + "CommandName": "Add-PnPTeamsChannel", "Rank": 3, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Id": 188, + "CommandName": "Add-PnPTeamsChannel", "Rank": 4, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { - "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", "Id": 189, + "CommandName": "Add-PnpTeamsChannelUser", "Rank": 1, - "CommandName": "Add-PnpTeamsChannelUser" + "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner" }, { - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Id": 190, + "CommandName": "Add-PnpTeamsChannelUser", "Rank": 2, - "CommandName": "Add-PnpTeamsChannelUser" + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" }, { - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", "Id": 191, + "CommandName": "Add-PnPTeamsTab", "Rank": 1, - "CommandName": "Add-PnPTeamsTab" + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"" }, { - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type PDF -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/General/MyFile.pdf\" -EntityId \"null\"", "Id": 192, + "CommandName": "Add-PnPTeamsTab", "Rank": 2, - "CommandName": "Add-PnPTeamsTab" + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type PDF -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/General/MyFile.pdf\" -EntityId \"null\"" }, { - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type SharePointPageAndList -WebSiteUrl \"https://contoso.sharepoint.com/sites/Marketing/SitePages/Home.aspx\"", "Id": 193, + "CommandName": "Add-PnPTeamsTab", "Rank": 3, - "CommandName": "Add-PnPTeamsTab" + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type SharePointPageAndList -WebSiteUrl \"https://contoso.sharepoint.com/sites/Marketing/SitePages/Home.aspx\"" }, { - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Excel Tab\" -Type Excel -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/My Excel File.csv\" -EntityId 6", "Id": 194, + "CommandName": "Add-PnPTeamsTab", "Rank": 4, - "CommandName": "Add-PnPTeamsTab" + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Excel Tab\" -Type Excel -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/My Excel File.csv\" -EntityId 6" }, { - "Command": "Add-PnPTeamsTeam", "Id": 195, + "CommandName": "Add-PnPTeamsTeam", "Rank": 1, - "CommandName": "Add-PnPTeamsTeam" + "Command": "Add-PnPTeamsTeam" }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 196, + "CommandName": "Add-PnPTeamsUser", "Rank": 1, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Id": 197, + "CommandName": "Add-PnPTeamsUser", "Rank": 2, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Id": 198, + "CommandName": "Add-PnPTeamsUser", "Rank": 3, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Id": 199, + "CommandName": "Add-PnPTeamsUser", "Rank": 4, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 200, + "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin" + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Id": 201, + "CommandName": "Add-PnPTenantSequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequence" + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Id": 202, + "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite" + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Id": 203, + "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite" + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Id": 204, + "CommandName": "Add-PnPTermToTerm", "Rank": 1, - "CommandName": "Add-PnPTermToTerm" + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Id": 205, + "CommandName": "Add-PnPView", "Rank": 1, - "CommandName": "Add-PnPView" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Id": 206, + "CommandName": "Add-PnPView", "Rank": 2, - "CommandName": "Add-PnPView" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Id": 207, + "CommandName": "Add-PnPView", "Rank": 3, - "CommandName": "Add-PnPView" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" }, { - "Command": "Add-PnPVivaConnectionsDashboardACE -Identity CardDesigner -Order 3 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Large -Description \"ACE description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"", "Id": 208, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 1, - "CommandName": "Add-PnPVivaConnectionsDashboardACE" + "Command": "Add-PnPVivaConnectionsDashboardACE -Identity CardDesigner -Order 3 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Large -Description \"ACE description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" }, { - "Command": "Add-PnPVivaConnectionsDashboardACE -Identity ThirdPartyApp -Order 1 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Medium -Description \"ACE with description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"", "Id": 209, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 2, - "CommandName": "Add-PnPVivaConnectionsDashboardACE" + "Command": "Add-PnPVivaConnectionsDashboardACE -Identity ThirdPartyApp -Order 1 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Medium -Description \"ACE with description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" }, { - "Command": "Add-PnPVivaConnectionsDashboardACE -Identity AssignedTasks -Order 2 -Title \"Tasks\" -PropertiesJSON $myProperties -CardSize Medium -Description \"My Assigned tasks\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"", "Id": 210, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 3, - "CommandName": "Add-PnPVivaConnectionsDashboardACE" + "Command": "Add-PnPVivaConnectionsDashboardACE -Identity AssignedTasks -Order 2 -Title \"Tasks\" -PropertiesJSON $myProperties -CardSize Medium -Description \"My Assigned tasks\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Id": 211, + "CommandName": "Add-PnPWebhookSubscription", "Rank": 1, - "CommandName": "Add-PnPWebhookSubscription" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Id": 212, + "CommandName": "Add-PnPWebhookSubscription", "Rank": 2, - "CommandName": "Add-PnPWebhookSubscription" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "Id": 213, + "CommandName": "Add-PnPWebhookSubscription", "Rank": 3, - "CommandName": "Add-PnPWebhookSubscription" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Id": 214, + "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 1, - "CommandName": "Add-PnPWebPartToWebPartPage" + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1" }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Id": 215, + "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 2, - "CommandName": "Add-PnPWebPartToWebPartPage" + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Id": 216, + "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 1, - "CommandName": "Add-PnPWebPartToWikiPage" + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1" }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Id": 217, + "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 2, - "CommandName": "Add-PnPWebPartToWikiPage" + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" }, { - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Id": 218, + "CommandName": "Add-PnPWikiPage", "Rank": 1, - "CommandName": "Add-PnPWikiPage" + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Id": 219, + "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember" + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Id": 220, + "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner" + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Id": 221, + "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Id": 222, + "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 223, + "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord" + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Id": 224, + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Id": 225, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 226, + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem" + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Id": 227, + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem" + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Id": 228, + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem" + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { - "Command": "Clear-PnPTenantAppCatalogUrl", "Id": 229, + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "Command": "Clear-PnPTenantAppCatalogUrl" }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 230, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 1, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 231, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", "Id": 232, + "CommandName": "Connect-PnPOnline", "Rank": 1, - "CommandName": "Connect-PnPOnline" + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"" }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Id": 233, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Id": 234, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml", "Id": 235, + "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate" + "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Id": 236, + "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Id": 237, + "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Id": 238, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Id": 239, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Id": 240, + "CommandName": "ConvertTo-PnPPage", "Rank": 1, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Id": 241, + "CommandName": "ConvertTo-PnPPage", "Rank": 2, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Id": 242, + "CommandName": "ConvertTo-PnPPage", "Rank": 3, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Id": 243, + "CommandName": "ConvertTo-PnPPage", "Rank": 4, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 244, + "CommandName": "ConvertTo-PnPPage", "Rank": 5, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Id": 245, + "CommandName": "ConvertTo-PnPPage", "Rank": 6, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Id": 246, + "CommandName": "ConvertTo-PnPPage", "Rank": 7, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Id": 247, + "CommandName": "ConvertTo-PnPPage", "Rank": 8, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 248, + "CommandName": "ConvertTo-PnPPage", "Rank": 9, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Id": 249, + "CommandName": "ConvertTo-PnPPage", "Rank": 10, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Id": 250, + "CommandName": "ConvertTo-PnPPage", "Rank": 11, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 251, + "CommandName": "ConvertTo-PnPPage", "Rank": 12, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 252, + "CommandName": "ConvertTo-PnPPage", "Rank": 13, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Id": 253, + "CommandName": "ConvertTo-PnPPage", "Rank": 14, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 254, + "CommandName": "Copy-PnPFile", "Rank": 1, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 255, + "CommandName": "Copy-PnPFile", "Rank": 2, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 256, + "CommandName": "Copy-PnPFile", "Rank": 3, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 257, + "CommandName": "Copy-PnPFile", "Rank": 4, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 258, + "CommandName": "Copy-PnPFile", "Rank": 5, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 259, + "CommandName": "Copy-PnPFile", "Rank": 6, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 260, + "CommandName": "Copy-PnPFile", "Rank": 7, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 261, + "CommandName": "Copy-PnPFile", "Rank": 8, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 262, + "CommandName": "Copy-PnPFile", "Rank": 9, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 263, + "CommandName": "Copy-PnPFile", "Rank": 10, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 264, + "CommandName": "Copy-PnPFolder", "Rank": 1, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 265, + "CommandName": "Copy-PnPFolder", "Rank": 2, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 266, + "CommandName": "Copy-PnPFolder", "Rank": 3, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 267, + "CommandName": "Copy-PnPFolder", "Rank": 4, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 268, + "CommandName": "Copy-PnPFolder", "Rank": 5, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 269, + "CommandName": "Copy-PnPFolder", "Rank": 6, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 270, + "CommandName": "Copy-PnPFolder", "Rank": 7, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 271, + "CommandName": "Copy-PnPFolder", "Rank": 8, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 272, + "CommandName": "Copy-PnPFolder", "Rank": 9, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 273, + "CommandName": "Copy-PnPFolder", "Rank": 10, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Id": 274, + "CommandName": "Copy-PnPItemProxy", "Rank": 1, - "CommandName": "Copy-PnPItemProxy" + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Id": 275, + "CommandName": "Copy-PnPList", "Rank": 1, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Id": 276, + "CommandName": "Copy-PnPList", "Rank": 2, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Id": 277, + "CommandName": "Copy-PnPList", "Rank": 3, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Id": 278, + "CommandName": "Copy-PnPList", "Rank": 4, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Id": 279, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, - "CommandName": "Copy-PnPTeamsTeam" + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Id": 280, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam" + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Id": 281, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 3, - "CommandName": "Copy-PnPTeamsTeam" + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Id": 282, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 4, - "CommandName": "Copy-PnPTeamsTeam" + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 283, + "CommandName": "Disable-PnPFeature", "Rank": 1, - "CommandName": "Disable-PnPFeature" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 284, + "CommandName": "Disable-PnPFeature", "Rank": 2, - "CommandName": "Disable-PnPFeature" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 285, + "CommandName": "Disable-PnPFeature", "Rank": 3, - "CommandName": "Disable-PnPFeature" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Command": "Disable-PnPPageScheduling", "Id": 286, + "CommandName": "Disable-PnPPageScheduling", "Rank": 1, - "CommandName": "Disable-PnPPageScheduling" + "Command": "Disable-PnPPageScheduling" }, { - "Command": "Disable-PnPPowerShellTelemetry", "Id": 287, + "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry" + "Command": "Disable-PnPPowerShellTelemetry" }, { - "Command": "Disable-PnPPowerShellTelemetry -Force", "Id": 288, + "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry" + "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "Command": "Disable-PnPSharingForNonOwnersOfSite", "Id": 289, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Command": "Disable-PnPSiteClassification", "Id": 290, + "CommandName": "Disable-PnPSiteClassification", "Rank": 1, - "CommandName": "Disable-PnPSiteClassification" + "Command": "Disable-PnPSiteClassification" }, { - "Command": "Disconnect-PnPOnline", "Id": 291, + "CommandName": "Disconnect-PnPOnline", "Rank": 1, - "CommandName": "Disconnect-PnPOnline" + "Command": "Disconnect-PnPOnline" }, { - "Command": "Enable-PnPCommSite", "Id": 292, + "CommandName": "Enable-PnPCommSite", "Rank": 1, - "CommandName": "Enable-PnPCommSite" + "Command": "Enable-PnPCommSite" }, { - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Id": 293, + "CommandName": "Enable-PnPCommSite", "Rank": 2, - "CommandName": "Enable-PnPCommSite" + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 294, + "CommandName": "Enable-PnPFeature", "Rank": 1, - "CommandName": "Enable-PnPFeature" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 295, + "CommandName": "Enable-PnPFeature", "Rank": 2, - "CommandName": "Enable-PnPFeature" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 296, + "CommandName": "Enable-PnPFeature", "Rank": 3, - "CommandName": "Enable-PnPFeature" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Command": "Enable-PnPPageScheduling", "Id": 297, + "CommandName": "Enable-PnPPageScheduling", "Rank": 1, - "CommandName": "Enable-PnPPageScheduling" + "Command": "Enable-PnPPageScheduling" }, { - "Command": "Enable-PnPPowerShellTelemetry", "Id": 298, + "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry" + "Command": "Enable-PnPPowerShellTelemetry" }, { - "Command": "Enable-PnPPowerShellTelemetry -Force", "Id": 299, + "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry" + "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Id": 300, + "CommandName": "Enable-PnPSiteClassification", "Rank": 1, - "CommandName": "Enable-PnPSiteClassification" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 301, + "CommandName": "Enable-PnPSiteClassification", "Rank": 2, - "CommandName": "Enable-PnPSiteClassification" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Id": 302, + "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate" + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Id": 303, + "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate" + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "Command": "Export-PnPPage -Identity Home.aspx", "Id": 304, + "CommandName": "Export-PnPPage", "Rank": 1, - "CommandName": "Export-PnPPage" + "Command": "Export-PnPPage -Identity Home.aspx" }, { - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Id": 305, + "CommandName": "Export-PnPPageMapping", "Rank": 1, - "CommandName": "Export-PnPPageMapping" + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Id": 306, + "CommandName": "Export-PnPPageMapping", "Rank": 2, - "CommandName": "Export-PnPPageMapping" + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Id": 307, + "CommandName": "Export-PnPPageMapping", "Rank": 3, - "CommandName": "Export-PnPPageMapping" + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "Command": "Export-PnPTaxonomy", "Id": 308, + "CommandName": "Export-PnPTaxonomy", "Rank": 1, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy" }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Id": 309, + "CommandName": "Export-PnPTaxonomy", "Rank": 2, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Id": 310, + "CommandName": "Export-PnPTaxonomy", "Rank": 3, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Id": 311, + "CommandName": "Export-PnPTaxonomy", "Rank": 4, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "Command": "Export-PnPTermGroupToXml", "Id": 312, + "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml" }, { - "Command": "Export-PnPTermGroupToXml -Out output.xml", "Id": 313, + "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Id": 314, + "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 315, + "CommandName": "Export-PnPUserInfo", "Rank": 1, - "CommandName": "Export-PnPUserInfo" + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Id": 316, + "CommandName": "Export-PnPUserInfo", "Rank": 2, - "CommandName": "Export-PnPUserInfo" + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Id": 317, + "CommandName": "Export-PnPUserProfile", "Rank": 1, - "CommandName": "Export-PnPUserProfile" + "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Id": 318, + "CommandName": "Export-PnPUserProfile", "Rank": 2, - "CommandName": "Export-PnPUserProfile" + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Command": "Find-PnPFile -Match *.master", "Id": 319, + "CommandName": "Find-PnPFile", "Rank": 1, - "CommandName": "Find-PnPFile" + "Command": "Find-PnPFile -Match *.master" }, { - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Id": 320, + "CommandName": "Find-PnPFile", "Rank": 2, - "CommandName": "Find-PnPFile" + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Id": 321, + "CommandName": "Find-PnPFile", "Rank": 3, - "CommandName": "Find-PnPFile" + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "Command": "Get-PnPAccessToken", "Id": 322, + "CommandName": "Get-PnPAccessToken", "Rank": 1, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken" }, { - "Command": "Get-PnPAccessToken -Decoded", "Id": 323, + "CommandName": "Get-PnPAccessToken", "Rank": 2, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -Decoded" }, { - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Id": 324, + "CommandName": "Get-PnPAccessToken", "Rank": 3, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Id": 325, + "CommandName": "Get-PnPAccessToken", "Rank": 4, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Id": 326, + "CommandName": "Get-PnPAccessToken", "Rank": 5, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "Command": "Get-PnPAlert", "Id": 327, + "CommandName": "Get-PnPAlert", "Rank": 1, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert" }, { - "Command": "Get-PnPAlert -List \"Demo List\"", "Id": 328, + "CommandName": "Get-PnPAlert", "Rank": 2, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 329, + "CommandName": "Get-PnPAlert", "Rank": 3, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Id": 330, + "CommandName": "Get-PnPAlert", "Rank": 4, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "Command": "Get-PnPAlert -AllUsers", "Id": 331, + "CommandName": "Get-PnPAlert", "Rank": 5, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -AllUsers" }, { - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Id": 332, + "CommandName": "Get-PnPAlert", "Rank": 6, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "Command": "Get-PnPApp", "Id": 333, + "CommandName": "Get-PnPApp", "Rank": 1, - "CommandName": "Get-PnPApp" + "Command": "Get-PnPApp" }, { - "Command": "Get-PnPApp -Scope Site", "Id": 334, + "CommandName": "Get-PnPApp", "Rank": 2, - "CommandName": "Get-PnPApp" + "Command": "Get-PnPApp -Scope Site" }, { - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 335, + "CommandName": "Get-PnPApp", "Rank": 3, - "CommandName": "Get-PnPApp" + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Id": 336, + "CommandName": "Get-PnPAppErrors", "Rank": 1, - "CommandName": "Get-PnPAppErrors" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Id": 337, + "CommandName": "Get-PnPAppErrors", "Rank": 2, - "CommandName": "Get-PnPAppErrors" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Id": 338, + "CommandName": "Get-PnPAppInfo", "Rank": 1, - "CommandName": "Get-PnPAppInfo" + "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 339, + "CommandName": "Get-PnPAppInfo", "Rank": 2, - "CommandName": "Get-PnPAppInfo" + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Id": 340, + "CommandName": "Get-PnPAppInfo", "Rank": 3, - "CommandName": "Get-PnPAppInfo" + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "Command": "Get-PnPApplicationCustomizer", "Id": 341, + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer" }, { - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 342, + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Id": 343, + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "Command": "Get-PnPAuditing", "Id": 344, + "CommandName": "Get-PnPAuditing", "Rank": 1, - "CommandName": "Get-PnPAuditing" + "Command": "Get-PnPAuditing" }, { - "Command": "Get-PnPAuthenticationRealm", "Id": 345, + "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm" + "Command": "Get-PnPAuthenticationRealm" }, { - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Id": 346, + "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm" + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "Command": "Get-PnPAvailableLanguage", "Id": 347, + "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage" + "Command": "Get-PnPAvailableLanguage" }, { - "Command": "Get-PnPAvailableSensitivityLabel", "Id": 348, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel" }, { - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Id": 349, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Id": 350, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "Command": "Get-PnPAvailableSiteClassification", "Id": 351, + "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification" + "Command": "Get-PnPAvailableSiteClassification" }, { - "Command": "Get-PnPAzureACSPrincipal", "Id": 352, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal" }, { - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Id": 353, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Id": 354, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Id": 355, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 356, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Id": 357, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Id": 358, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "Command": "Get-PnPAzureADActivityReportSignIn", "Id": 359, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Id": 360, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Id": 361, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "Command": "Get-PnPAzureADApp", "Id": 362, + "CommandName": "Get-PnPAzureADApp", "Rank": 1, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp" }, { - "Command": "Get-PnPAzureADApp -Identity MyApp", "Id": 363, + "CommandName": "Get-PnPAzureADApp", "Rank": 2, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 364, + "CommandName": "Get-PnPAzureADApp", "Rank": 3, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Id": 365, + "CommandName": "Get-PnPAzureADApp", "Rank": 4, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "Command": "Get-PnPAzureADAppPermission", "Id": 366, + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission" }, { - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Id": 367, + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 368, + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Command": "Get-PnPAzureADAppSitePermission", "Id": 369, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission" }, { - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Id": 370, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Id": 371, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Id": 372, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Id": 373, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "Command": "Get-PnPAzureADGroup", "Id": 374, + "CommandName": "Get-PnPAzureADGroup", "Rank": 1, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup" }, { - "Command": "Get-PnPAzureADGroup -Identity $groupId", "Id": 375, + "CommandName": "Get-PnPAzureADGroup", "Rank": 2, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Id": 376, + "CommandName": "Get-PnPAzureADGroup", "Rank": 3, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Id": 377, + "CommandName": "Get-PnPAzureADGroup", "Rank": 4, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "Command": "Get-PnPAzureADGroup -Identity $group", "Id": 378, + "CommandName": "Get-PnPAzureADGroup", "Rank": 5, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Id": 379, + "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember" + "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "Command": "Get-PnPAzureADGroupMember -Identity $group", "Id": 380, + "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember" + "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Id": 381, + "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner" + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Id": 382, + "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner" + "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "Command": "Get-PnPAzureADServicePrincipal", "Id": 383, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal" }, { - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Id": 384, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Id": 385, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Id": 386, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Id": 387, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 388, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 389, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 390, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Id": 391, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "Command": "Get-PnPAzureADUser", "Id": 392, + "CommandName": "Get-PnPAzureADUser", "Rank": 1, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser" }, { - "Command": "Get-PnPAzureADUser -EndIndex 50", "Id": 393, + "CommandName": "Get-PnPAzureADUser", "Rank": 2, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 394, + "CommandName": "Get-PnPAzureADUser", "Rank": 3, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Id": 395, + "CommandName": "Get-PnPAzureADUser", "Rank": 4, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Id": 396, + "CommandName": "Get-PnPAzureADUser", "Rank": 5, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Id": 397, + "CommandName": "Get-PnPAzureADUser", "Rank": 6, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Id": 398, + "CommandName": "Get-PnPAzureADUser", "Rank": 7, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "Command": "Get-PnPAzureADUser -Delta", "Id": 399, + "CommandName": "Get-PnPAzureADUser", "Rank": 8, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Delta" }, { - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Id": 400, + "CommandName": "Get-PnPAzureADUser", "Rank": 9, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Id": 401, + "CommandName": "Get-PnPAzureADUser", "Rank": 10, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Id": 402, + "CommandName": "Get-PnPAzureCertificate", "Rank": 1, - "CommandName": "Get-PnPAzureCertificate" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Id": 403, + "CommandName": "Get-PnPAzureCertificate", "Rank": 2, - "CommandName": "Get-PnPAzureCertificate" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Id": 404, + "CommandName": "Get-PnPAzureCertificate", "Rank": 3, - "CommandName": "Get-PnPAzureCertificate" + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "Command": "Get-PnPBrowserIdleSignout", "Id": 405, + "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout" + "Command": "Get-PnPBrowserIdleSignout" }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Id": 406, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility", "Id": 407, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings", "Id": 408, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Id": 409, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Id": 410, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Id": 411, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Id": 412, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "Command": "Get-PnPChangeLog", "Id": 413, + "CommandName": "Get-PnPChangeLog", "Rank": 1, - "CommandName": "Get-PnPChangeLog" + "Command": "Get-PnPChangeLog" }, { - "Command": "Get-PnPChangeLog -Nightly", "Id": 414, + "CommandName": "Get-PnPChangeLog", "Rank": 2, - "CommandName": "Get-PnPChangeLog" + "Command": "Get-PnPChangeLog -Nightly" }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Id": 415, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Id": 416, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "Command": "Get-PnPContentType", "Id": 417, + "CommandName": "Get-PnPContentType", "Rank": 1, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType" }, { - "Command": "Get-PnPContentType -InSiteHierarchy", "Id": 418, + "CommandName": "Get-PnPContentType", "Rank": 2, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "Command": "Get-PnPContentType -Identity \"Project Document\"", "Id": 419, + "CommandName": "Get-PnPContentType", "Rank": 3, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "Command": "Get-PnPContentType -List \"Documents\"", "Id": 420, + "CommandName": "Get-PnPContentType", "Rank": 4, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -List \"Documents\"" }, { - "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "Id": 421, + "CommandName": "Get-PnPContentType", "Rank": 5, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -Includes \"SchemaXml\"" }, { - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Id": 422, + "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus" + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "Command": "Get-PnPCustomAction", "Id": 423, + "CommandName": "Get-PnPCustomAction", "Rank": 1, - "CommandName": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction" }, { - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 424, + "CommandName": "Get-PnPCustomAction", "Rank": 2, - "CommandName": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Command": "Get-PnPCustomAction -Scope web", "Id": 425, + "CommandName": "Get-PnPCustomAction", "Rank": 3, - "CommandName": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction -Scope web" }, { - "Command": "Get-PnPDeletedMicrosoft365Group", "Id": 426, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 427, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Command": "Get-PnPDeletedTeam", "Id": 428, + "CommandName": "Get-PnPDeletedTeam", "Rank": 1, - "CommandName": "Get-PnPDeletedTeam" + "Command": "Get-PnPDeletedTeam" }, { - "Command": "Get-PnPDiagnostics", "Id": 429, + "CommandName": "Get-PnPDiagnostics", "Rank": 1, - "CommandName": "Get-PnPDiagnostics" + "Command": "Get-PnPDiagnostics" }, { - "Command": "Get-PnPDisableSpacesActivation", "Id": 430, + "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation" + "Command": "Get-PnPDisableSpacesActivation" }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Id": 431, + "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate" + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Id": 432, + "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate" + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "Command": "Get-PnPEventReceiver", "Id": 433, + "CommandName": "Get-PnPEventReceiver", "Rank": 1, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver" }, { - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 434, + "CommandName": "Get-PnPEventReceiver", "Rank": 2, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Id": 435, + "CommandName": "Get-PnPEventReceiver", "Rank": 3, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Id": 436, + "CommandName": "Get-PnPEventReceiver", "Rank": 4, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 437, + "CommandName": "Get-PnPEventReceiver", "Rank": 5, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Id": 438, + "CommandName": "Get-PnPEventReceiver", "Rank": 6, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "Command": "Get-PnPEventReceiver -Scope Site", "Id": 439, + "CommandName": "Get-PnPEventReceiver", "Rank": 7, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Scope Site" }, { - "Command": "Get-PnPEventReceiver -Scope Web", "Id": 440, + "CommandName": "Get-PnPEventReceiver", "Rank": 8, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Scope Web" }, { - "Command": "Get-PnPEventReceiver -Scope All", "Id": 441, + "CommandName": "Get-PnPEventReceiver", "Rank": 9, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Scope All" }, { - "Command": "Get-PnPException", "Id": 442, + "CommandName": "Get-PnPException", "Rank": 1, - "CommandName": "Get-PnPException" + "Command": "Get-PnPException" }, { - "Command": "Get-PnPException -All", "Id": 443, + "CommandName": "Get-PnPException", "Rank": 2, - "CommandName": "Get-PnPException" + "Command": "Get-PnPException -All" }, { - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Id": 444, + "CommandName": "Get-PnPExternalUser", "Rank": 1, - "CommandName": "Get-PnPExternalUser" + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Id": 445, + "CommandName": "Get-PnPExternalUser", "Rank": 2, - "CommandName": "Get-PnPExternalUser" + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "Command": "Get-PnPFeature", "Id": 446, + "CommandName": "Get-PnPFeature", "Rank": 1, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature" }, { - "Command": "Get-PnPFeature -Scope Site", "Id": 447, + "CommandName": "Get-PnPFeature", "Rank": 2, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature -Scope Site" }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 448, + "CommandName": "Get-PnPFeature", "Rank": 3, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Id": 449, + "CommandName": "Get-PnPFeature", "Rank": 4, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "Command": "Get-PnPField", "Id": 450, + "CommandName": "Get-PnPField", "Rank": 1, - "CommandName": "Get-PnPField" + "Command": "Get-PnPField" }, { - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 451, + "CommandName": "Get-PnPField", "Rank": 2, - "CommandName": "Get-PnPField" + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Command": "Get-PnPField -Group \"Custom Columns\"", "Id": 452, + "CommandName": "Get-PnPField", "Rank": 3, - "CommandName": "Get-PnPField" + "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Id": 453, + "CommandName": "Get-PnPFile", "Rank": 1, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Id": 454, + "CommandName": "Get-PnPFile", "Rank": 2, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Id": 455, + "CommandName": "Get-PnPFile", "Rank": 3, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Id": 456, + "CommandName": "Get-PnPFile", "Rank": 4, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Id": 457, + "CommandName": "Get-PnPFile", "Rank": 5, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Id": 458, + "CommandName": "Get-PnPFile", "Rank": 6, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Id": 459, + "CommandName": "Get-PnPFile", "Rank": 7, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 460, + "CommandName": "Get-PnPFileInFolder", "Rank": 1, - "CommandName": "Get-PnPFileSharingLink" + "Command": "Get-PnPFileInFolder" }, { - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Id": 461, - "Rank": 1, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileInFolder", + "Rank": 2, + "Command": "Get-PnPFileInFolder -Recurse" }, { - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Id": 462, - "Rank": 2, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileInFolder", + "Rank": 3, + "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"" }, { - "Command": "Get-PnPFlow -AsAdmin", "Id": 463, - "Rank": 1, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFileInFolder", + "Rank": 4, + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Id": 464, - "Rank": 2, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFileInFolder", + "Rank": 5, + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Id": 465, - "Rank": 3, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFileSharingLink", + "Rank": 1, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Id": 466, + "CommandName": "Get-PnPFileVersion", "Rank": 1, - "CommandName": "Get-PnPFlowOwner" + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "Command": "Get-PnPFolder", "Id": 467, - "Rank": 1, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFileVersion", + "Rank": 2, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Id": 468, - "Rank": 2, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFlow", + "Rank": 1, + "Command": "Get-PnPFlow -AsAdmin" }, { - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Id": 469, - "Rank": 3, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFlow", + "Rank": 2, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "Command": "Get-PnPFolder -List \"Shared Documents\"", "Id": 470, - "Rank": 4, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFlow", + "Rank": 3, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "Command": "Get-PnPFolderFile", "Id": 471, + "CommandName": "Get-PnPFlowOwner", "Rank": 1, - "CommandName": "Get-PnPFolderFile" + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "Command": "Get-PnPFolderFile -Recurse", "Id": 472, - "Rank": 2, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolder", + "Rank": 1, + "Command": "Get-PnPFolder" }, { - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Id": 473, - "Rank": 3, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolder", + "Rank": 2, + "Command": "Get-PnPFolder -CurrentWebRootFolder" }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 474, - "Rank": 4, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolder", + "Rank": 3, + "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 475, - "Rank": 5, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolder", + "Rank": 4, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "Command": "Get-PnPFolderFolder", "Id": 476, - "Rank": 1, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolder", + "Rank": 5, + "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"" }, { - "Command": "Get-PnPFolderFolder -Recurse", "Id": 477, - "Rank": 2, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolder", + "Rank": 6, + "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Id": 478, - "Rank": 3, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderInFolder", + "Rank": 1, + "Command": "Get-PnPFolderInFolder" }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Id": 479, - "Rank": 4, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderInFolder", + "Rank": 2, + "Command": "Get-PnPFolderInFolder -Recurse" }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Id": 480, - "Rank": 5, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderInFolder", + "Rank": 3, + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"" }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 481, - "Rank": 6, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderInFolder", + "Rank": 4, + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "Command": "Get-PnPFolderItem", "Id": 482, - "Rank": 1, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderInFolder", + "Rank": 5, + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "Command": "Get-PnPFolderItem -Recurse", "Id": 483, - "Rank": 2, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderInFolder", + "Rank": 6, + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Id": 484, - "Rank": 3, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 1, + "Command": "Get-PnPFolderItem" }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 485, - "Rank": 4, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 2, + "Command": "Get-PnPFolderItem -Recurse" }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Id": 486, - "Rank": 5, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 3, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 487, - "Rank": 6, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 4, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 488, - "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink" + "CommandName": "Get-PnPFolderItem", + "Rank": 5, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "Command": "Get-PnPFolderStorageMetric", "Id": 489, - "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderItem", + "Rank": 6, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Id": 490, - "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderSharingLink", + "Rank": 1, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Id": 491, - "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 1, + "Command": "Get-PnPFolderStorageMetric" }, { - "Command": "Get-PnPFooter", "Id": 492, - "Rank": 1, - "CommandName": "Get-PnPFooter" + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 2, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "Command": "Get-PnPGraphAccessToken", "Id": 493, - "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 3, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "Command": "Get-PnPGraphAccessToken -Decoded", "Id": 494, - "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPFooter", + "Rank": 1, + "Command": "Get-PnPFooter" }, { - "Command": "Get-PnPGraphSubscription", "Id": 495, + "CommandName": "Get-PnPGraphAccessToken", "Rank": 1, - "CommandName": "Get-PnPGraphSubscription" + "Command": "Get-PnPGraphAccessToken" }, { - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 496, + "CommandName": "Get-PnPGraphAccessToken", "Rank": 2, - "CommandName": "Get-PnPGraphSubscription" + "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "Command": "Get-PnPGroup", "Id": 497, + "CommandName": "Get-PnPGraphSubscription", "Rank": 1, - "CommandName": "Get-PnPGroup" + "Command": "Get-PnPGraphSubscription" }, { - "Command": "Get-PnPGroup -Identity 'My Site Users'", "Id": 498, + "CommandName": "Get-PnPGraphSubscription", "Rank": 2, - "CommandName": "Get-PnPGroup" + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Command": "Get-PnPGroup -AssociatedMemberGroup", "Id": 499, - "Rank": 3, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Rank": 1, + "Command": "Get-PnPGroup" }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Id": 500, - "Rank": 1, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroup", + "Rank": 2, + "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Id": 501, - "Rank": 2, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroup", + "Rank": 3, + "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Id": 502, + "CommandName": "Get-PnPGroupMember", "Rank": 1, - "CommandName": "Get-PnPGroupPermissions" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "Command": "Get-PnPHideDefaultThemes", "Id": 503, - "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes" + "CommandName": "Get-PnPGroupMember", + "Rank": 2, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "Command": "Get-PnPHomePage", "Id": 504, + "CommandName": "Get-PnPGroupPermissions", "Rank": 1, - "CommandName": "Get-PnPHomePage" + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "Command": "Get-PnPHomeSite", "Id": 505, + "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, - "CommandName": "Get-PnPHomeSite" + "Command": "Get-PnPHideDefaultThemes" }, { - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Id": 506, - "Rank": 2, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomePage", + "Rank": 1, + "Command": "Get-PnPHomePage" }, { - "Command": "Get-PnPHomeSite -Detailed", "Id": 507, - "Rank": 3, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Rank": 1, + "Command": "Get-PnPHomeSite" }, { - "Command": "Get-PnPHubSite", "Id": 508, - "Rank": 1, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHomeSite", + "Rank": 2, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 509, - "Rank": 2, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHomeSite", + "Rank": 3, + "Command": "Get-PnPHomeSite -Detailed" }, { - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Id": 510, - "Rank": 3, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Rank": 1, + "Command": "Get-PnPHubSite" }, { - "Command": "Get-PnPHubSiteChild", "Id": 511, - "Rank": 1, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSite", + "Rank": 2, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 512, - "Rank": 2, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSite", + "Rank": 3, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "Command": "Get-PnPInPlaceRecordsManagement", "Id": 513, + "CommandName": "Get-PnPHubSiteChild", "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement" + "Command": "Get-PnPHubSiteChild" }, { - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Id": 514, - "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable" + "CommandName": "Get-PnPHubSiteChild", + "Rank": 2, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Command": "Get-PnPJavaScriptLink", "Id": 515, + "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPInPlaceRecordsManagement" }, { - "Command": "Get-PnPJavaScriptLink -Scope All", "Id": 516, - "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Rank": 1, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "Command": "Get-PnPJavaScriptLink -Scope Web", "Id": 517, - "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 1, + "Command": "Get-PnPJavaScriptLink" }, { - "Command": "Get-PnPJavaScriptLink -Scope Site", "Id": 518, - "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 2, + "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "Command": "Get-PnPJavaScriptLink -Name Test", "Id": 519, - "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 3, + "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "Command": "Get-PnPKnowledgeHubSite", "Id": 520, - "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 4, + "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "Command": "Get-PnPLabel", "Id": 521, - "Rank": 1, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 5, + "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Id": 522, - "Rank": 2, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPKnowledgeHubSite", + "Rank": 1, + "Command": "Get-PnPKnowledgeHubSite" }, { - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Id": 523, + "CommandName": "Get-PnPLabel", "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus" + "Command": "Get-PnPLabel" }, { - "Command": "Get-PnPList", "Id": 524, - "Rank": 1, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPLabel", + "Rank": 2, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 525, - "Rank": 2, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPLargeListOperationStatus", + "Rank": 1, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "Command": "Get-PnPList -Identity Lists/Announcements", "Id": 526, - "Rank": 3, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 1, + "Command": "Get-PnPList" }, { - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Id": 527, - "Rank": 4, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 2, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Id": 528, - "Rank": 5, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 3, + "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "Command": "Get-PnPListDesign", "Id": 529, - "Rank": 1, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPList", + "Rank": 4, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 530, - "Rank": 2, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPList", + "Rank": 5, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "Command": "Get-PnPListDesign -Identity ListEvent", "Id": 531, - "Rank": 3, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Rank": 1, + "Command": "Get-PnPListDesign" }, { - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Id": 532, - "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement" + "CommandName": "Get-PnPListDesign", + "Rank": 2, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Get-PnPListItem -List Tasks", "Id": 533, - "Rank": 1, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListDesign", + "Rank": 3, + "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "Command": "Get-PnPListItem -List Tasks -Id 1", "Id": 534, - "Rank": 2, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListInformationRightsManagement", + "Rank": 1, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Id": 535, - "Rank": 3, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 1, + "Command": "Get-PnPListItem -List Tasks" }, { - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Id": 536, - "Rank": 4, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 2, + "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Id": 537, - "Rank": 5, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 3, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Id": 538, - "Rank": 6, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 4, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Id": 539, - "Rank": 7, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 5, + "Command": "Get-PnPListItem -List Tasks -Query \"\"" }, { - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Id": 540, - "Rank": 8, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 6, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Id": 541, - "Rank": 9, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 7, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Id": 542, - "Rank": 1, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItem", + "Rank": 8, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Id": 543, - "Rank": 2, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItem", + "Rank": 9, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Id": 544, + "CommandName": "Get-PnPListItemAttachment", "Rank": 1, - "CommandName": "Get-PnPListItemComment" + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Id": 545, - "Rank": 1, - "CommandName": "Get-PnPListItemPermission" + "CommandName": "Get-PnPListItemAttachment", + "Rank": 2, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Id": 546, + "CommandName": "Get-PnPListItemComment", "Rank": 1, - "CommandName": "Get-PnPListItemVersion" + "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Id": 547, + "CommandName": "Get-PnPListItemPermission", "Rank": 1, - "CommandName": "Get-PnPListPermissions" + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Id": 548, - "Rank": 2, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListItemVersion", + "Rank": 1, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Id": 549, + "CommandName": "Get-PnPListPermissions", "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "Command": "Get-PnPMasterPage", "Id": 550, - "Rank": 1, - "CommandName": "Get-PnPMasterPage" + "CommandName": "Get-PnPListPermissions", + "Rank": 2, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Command": "Get-PnPMessageCenterAnnouncement", "Id": 551, + "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Id": 552, - "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMasterPage", + "Rank": 1, + "Command": "Get-PnPMasterPage" }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup", "Id": 553, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "Command": "Get-PnPMessageCenterAnnouncement" }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Id": 554, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "Command": "Get-PnPMicrosoft365Group", "Id": 555, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Id": 556, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Id": 557, - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 1, + "Command": "Get-PnPMicrosoft365Group" }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Id": 558, - "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 2, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "Command": "Get-PnPMicrosoft365Group -Identity $group", "Id": 559, - "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 3, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Id": 560, - "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 4, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint", "Id": 561, - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 5, + "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Id": 562, - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 6, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 563, - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Id": 564, - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Id": 565, - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Id": 566, - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Id": 567, - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Id": 568, - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "Command": "Get-PnPMicrosoft365GroupSettings", "Id": 569, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Id": 570, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 571, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Id": 572, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "Command": "Get-PnPMicrosoft365GroupTeam", "Id": 573, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Id": 574, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 575, - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 576, - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Id": 577, - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 578, - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Command": "Get-PnPNavigationNode", "Id": 579, - "Rank": 1, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Id": 580, - "Rank": 2, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Id": 581, - "Rank": 3, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Rank": 1, + "Command": "Get-PnPNavigationNode" }, { - "Command": "Get-PnPOrgAssetsLibrary", "Id": 582, - "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary" + "CommandName": "Get-PnPNavigationNode", + "Rank": 2, + "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "Command": "Get-PnPOrgNewsSite", "Id": 583, - "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite" + "CommandName": "Get-PnPNavigationNode", + "Rank": 3, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Id": 584, + "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "CommandName": "Get-PnPPage" + "Command": "Get-PnPOrgAssetsLibrary" }, { - "Command": "Get-PnPPage \"MyPage\"", "Id": 585, - "Rank": 2, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPOrgNewsSite", + "Rank": 1, + "Command": "Get-PnPOrgNewsSite" }, { - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Id": 586, - "Rank": 3, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Rank": 1, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Id": 587, - "Rank": 4, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Rank": 2, + "Command": "Get-PnPPage \"MyPage\"" }, { - "Command": "Get-PnPPageComponent -Page Home", "Id": 588, - "Rank": 1, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPage", + "Rank": 3, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 589, - "Rank": 2, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPage", + "Rank": 4, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Id": 590, - "Rank": 3, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Rank": 1, + "Command": "Get-PnPPageComponent -Page Home" }, { - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 591, - "Rank": 1, - "CommandName": "Get-PnPPlannerBucket" + "CommandName": "Get-PnPPageComponent", + "Rank": 2, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Command": "Get-PnPPlannerConfiguration", "Id": 592, - "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration" + "CommandName": "Get-PnPPageComponent", + "Rank": 3, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Id": 593, + "CommandName": "Get-PnPPlannerBucket", "Rank": 1, - "CommandName": "Get-PnPPlannerPlan" + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Id": 594, - "Rank": 2, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerConfiguration", + "Rank": 1, + "Command": "Get-PnPPlannerConfiguration" }, { - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Id": 595, - "Rank": 3, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Rank": 1, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 596, - "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember" + "CommandName": "Get-PnPPlannerPlan", + "Rank": 2, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Id": 597, - "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerPlan", + "Rank": 3, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 598, - "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterMember", + "Rank": 1, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 599, + "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, - "CommandName": "Get-PnPPlannerTask" + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 600, + "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, - "CommandName": "Get-PnPPlannerTask" + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 601, - "Rank": 3, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Rank": 1, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 602, - "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy" + "CommandName": "Get-PnPPlannerTask", + "Rank": 2, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Id": 603, - "Rank": 1, - "CommandName": "Get-PnPPowerPlatformConnector" + "CommandName": "Get-PnPPlannerTask", + "Rank": 3, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Command": "Get-PnPPowerPlatformEnvironment", "Id": 604, + "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Id": 605, - "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformConnector", + "Rank": 1, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Id": 606, - "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 1, + "Command": "Get-PnPPowerPlatformEnvironment" }, { - "Command": "Get-PnPPowerShellTelemetryEnabled", "Id": 607, - "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 2, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "Command": "Get-PnPPropertyBag", "Id": 608, - "Rank": 1, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 3, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "Command": "Get-PnPPropertyBag -Key MyKey", "Id": 609, - "Rank": 2, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, + "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Id": 610, - "Rank": 3, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 1, + "Command": "Get-PnPPropertyBag" }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Id": 611, - "Rank": 4, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 2, + "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Id": 612, - "Rank": 5, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 3, + "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "Command": "Get-PnPPublishingImageRendition", "Id": 613, - "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPropertyBag", + "Rank": 4, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Id": 614, - "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPropertyBag", + "Rank": 5, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "Command": "Get-PnPPublishingImageRendition -Identity 2", "Id": 615, - "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 1, + "Command": "Get-PnPPublishingImageRendition" }, { - "Command": "Get-PnPRecycleBinItem", "Id": 616, - "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 2, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Id": 617, - "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 3, + "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "Command": "Get-PnPRecycleBinItem -FirstStage", "Id": 618, - "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 1, + "Command": "Get-PnPRecycleBinItem" }, { - "Command": "Get-PnPRecycleBinItem -SecondStage", "Id": 619, - "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 2, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Id": 620, - "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 3, + "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "Command": "Get-PnPRequestAccessEmails", "Id": 621, - "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 4, + "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "Command": "Get-PnPRetentionLabel", "Id": 622, - "Rank": 1, - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 5, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Id": 623, - "Rank": 2, - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRequestAccessEmails", + "Rank": 1, + "Command": "Get-PnPRequestAccessEmails" }, { - "Command": "Get-PnPRoleDefinition", "Id": 624, + "CommandName": "Get-PnPRetentionLabel", "Rank": 1, - "CommandName": "Get-PnPRoleDefinition" + "Command": "Get-PnPRetentionLabel" }, { - "Command": "Get-PnPRoleDefinition -Identity Read", "Id": 625, + "CommandName": "Get-PnPRetentionLabel", "Rank": 2, - "CommandName": "Get-PnPRoleDefinition" + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Id": 626, - "Rank": 3, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Rank": 1, + "Command": "Get-PnPRoleDefinition" }, { - "Command": "Get-PnPSearchConfiguration", "Id": 627, - "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPRoleDefinition", + "Rank": 2, + "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "Command": "Get-PnPSearchConfiguration -Scope Site", "Id": 628, - "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPRoleDefinition", + "Rank": 3, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Id": 629, - "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 1, + "Command": "Get-PnPSearchConfiguration" }, { - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 630, - "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 2, + "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Id": 631, - "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 3, + "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Id": 632, - "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 4, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Id": 633, - "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 5, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Id": 634, - "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 6, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "Command": "Get-PnPSearchCrawlLog", "Id": 635, - "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 7, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Id": 636, - "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 8, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Id": 637, - "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 1, + "Command": "Get-PnPSearchCrawlLog" }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Id": 638, - "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 2, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Id": 639, - "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 3, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Id": 640, - "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 4, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Id": 641, - "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 5, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "Command": "Get-PnPSearchSettings", "Id": 642, - "Rank": 1, - "CommandName": "Get-PnPSearchSettings" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 6, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "Command": "Get-PnPServiceCurrentHealth", "Id": 643, - "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 7, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Id": 644, - "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPSearchSettings", + "Rank": 1, + "Command": "Get-PnPSearchSettings" }, { - "Command": "Get-PnPServiceHealthIssue", "Id": 645, + "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue" + "Command": "Get-PnPServiceCurrentHealth" }, { - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Id": 646, + "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue" + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "Command": "Get-PnPSharePointAddIn", "Id": 647, + "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn" + "Command": "Get-PnPServiceHealthIssue" }, { - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Id": 648, + "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn" + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "Command": "Get-PnPSharingForNonOwnersOfSite", "Id": 649, + "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "Command": "Get-PnPSharePointAddIn" }, { - "Command": "Get-PnPSite", "Id": 650, - "Rank": 1, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSharePointAddIn", + "Rank": 2, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Id": 651, - "Rank": 2, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1, + "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "Command": "Get-PnPSiteClosure", "Id": 652, + "CommandName": "Get-PnPSite", "Rank": 1, - "CommandName": "Get-PnPSiteClosure" + "Command": "Get-PnPSite" }, { - "Command": "Get-PnPSiteCollectionAdmin", "Id": 653, - "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin" + "CommandName": "Get-PnPSite", + "Rank": 2, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "Command": "Get-PnPSiteCollectionAppCatalog", "Id": 654, + "CommandName": "Get-PnPSiteClosure", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Command": "Get-PnPSiteClosure" }, { - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Id": 655, - "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAdmin", + "Rank": 1, + "Command": "Get-PnPSiteCollectionAdmin" }, { - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Id": 656, - "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1, + "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "Command": "Get-PnPSiteCollectionTermStore", "Id": 657, - "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 2, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "Command": "Get-PnPSiteDesign", "Id": 658, - "Rank": 1, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 3, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 659, - "Rank": 2, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteCollectionTermStore", + "Rank": 1, + "Command": "Get-PnPSiteCollectionTermStore" }, { - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 660, + "CommandName": "Get-PnPSiteDesign", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights" + "Command": "Get-PnPSiteDesign" }, { - "Command": "Get-PnPSiteDesignRun", "Id": 661, - "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesign", + "Rank": 2, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Id": 662, - "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRights", + "Rank": 1, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 663, + "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteDesignRun" }, { - "Command": "Get-PnPSiteDesignTask", "Id": 664, + "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 665, - "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 1, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Command": "Get-PnPSiteGroup", "Id": 666, - "Rank": 1, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 2, + "Command": "Get-PnPSiteDesignTask" }, { - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 667, - "Rank": 2, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 3, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Id": 668, - "Rank": 3, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Rank": 1, + "Command": "Get-PnPSiteGroup" }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 669, - "Rank": 4, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Rank": 2, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Command": "Get-PnPSitePolicy", "Id": 670, - "Rank": 1, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSiteGroup", + "Rank": 3, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "Command": "Get-PnPSitePolicy -AllAvailable", "Id": 671, - "Rank": 2, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSiteGroup", + "Rank": 4, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Id": 672, - "Rank": 3, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Rank": 1, + "Command": "Get-PnPSitePolicy" }, { - "Command": "Get-PnPSiteScript", "Id": 673, - "Rank": 1, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSitePolicy", + "Rank": 2, + "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 674, - "Rank": 2, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSitePolicy", + "Rank": 3, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Id": 675, + "CommandName": "Get-PnPSiteScript", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList" + "Command": "Get-PnPSiteScript" }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Id": 676, + "CommandName": "Get-PnPSiteScript", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList" + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Id": 677, - "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 1, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Id": 678, - "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 2, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Id": 679, - "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 3, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Id": 680, - "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 1, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Id": 681, - "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 2, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Id": 682, - "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 3, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Id": 683, - "Rank": 6, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 4, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "Command": "Get-PnPSiteSearchQueryResults", "Id": 684, - "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 5, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Id": 685, - "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 6, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Id": 686, - "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 1, + "Command": "Get-PnPSiteSearchQueryResults" }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Id": 687, - "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 2, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Id": 688, - "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 3, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "Command": "Get-PnPSiteSearchQueryResults -All", "Id": 689, - "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 4, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "Command": "Get-PnPSiteSensitivityLabel", "Id": 690, - "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 5, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp", "Id": 691, - "Rank": 1, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 6, + "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "Command": "Get-PnPSiteTemplate -Out template.xml", "Id": 692, - "Rank": 2, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteSensitivityLabel", + "Rank": 1, + "Command": "Get-PnPSiteSensitivityLabel" }, { - "Command": "Get-PnPSiteTemplate -Out template.md", "Id": 693, - "Rank": 3, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 1, + "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Id": 694, - "Rank": 4, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 2, + "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Id": 695, - "Rank": 5, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 3, + "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Id": 696, - "Rank": 6, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 4, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Id": 697, - "Rank": 7, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 5, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Id": 698, - "Rank": 8, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 6, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Id": 699, - "Rank": 9, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 7, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Id": 700, - "Rank": 10, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 8, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Id": 701, - "Rank": 11, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 9, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Id": 702, - "Rank": 12, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 10, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "Id": 703, - "Rank": 13, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 11, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Id": 704, - "Rank": 14, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 12, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 705, - "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 13, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "Command": "Get-PnPSiteVersionPolicy", "Id": 706, - "Rank": 1, - "CommandName": "Get-PnPSiteVersionPolicy" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 14, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "Command": "Get-PnPStorageEntity", "Id": 707, + "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, - "CommandName": "Get-PnPStorageEntity" + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Command": "Get-PnPStorageEntity -Key MyKey", "Id": 708, - "Rank": 2, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPSiteVersionPolicy", + "Rank": 1, + "Command": "Get-PnPSiteVersionPolicy" }, { - "Command": "Get-PnPStorageEntity -Scope Site", "Id": 709, - "Rank": 3, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Rank": 1, + "Command": "Get-PnPStorageEntity" }, { - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Id": 710, - "Rank": 4, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Rank": 2, + "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "Command": "Get-PnPStoredCredential -Name O365", "Id": 711, - "Rank": 1, - "CommandName": "Get-PnPStoredCredential" + "CommandName": "Get-PnPStorageEntity", + "Rank": 3, + "Command": "Get-PnPStorageEntity -Scope Site" }, { - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 712, - "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "CommandName": "Get-PnPStorageEntity", + "Rank": 4, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 713, + "CommandName": "Get-PnPStoredCredential", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "Command": "Get-PnPStoredCredential -Name O365" }, { - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Id": 714, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Command": "Get-PnPSubWeb", "Id": 715, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Command": "Get-PnPSubWeb -Recurse", "Id": 716, - "Rank": 2, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Rank": 1, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Id": 717, - "Rank": 3, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 1, + "Command": "Get-PnPSubWeb" }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Id": 718, - "Rank": 4, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 2, + "Command": "Get-PnPSubWeb -Recurse" }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Id": 719, - "Rank": 5, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 3, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "Command": "Get-PnPSyntexModel", "Id": 720, - "Rank": 1, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSubWeb", + "Rank": 4, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "Command": "Get-PnPSyntexModel -Identity 1", "Id": 721, - "Rank": 2, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSubWeb", + "Rank": 5, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Id": 722, - "Rank": 3, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Rank": 1, + "Command": "Get-PnPSyntexModel" }, { - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Id": 723, - "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication" + "CommandName": "Get-PnPSyntexModel", + "Rank": 2, + "Command": "Get-PnPSyntexModel -Identity 1" }, { - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Id": 724, - "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem" + "CommandName": "Get-PnPSyntexModel", + "Rank": 3, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "Command": "Get-PnPTeamsApp", "Id": 725, + "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, - "CommandName": "Get-PnPTeamsApp" + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Id": 726, - "Rank": 2, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTaxonomyItem", + "Rank": 1, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Id": 727, - "Rank": 3, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Rank": 1, + "Command": "Get-PnPTeamsApp" }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Id": 728, - "Rank": 1, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsApp", + "Rank": 2, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Id": 729, - "Rank": 2, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsApp", + "Rank": 3, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 730, - "Rank": 3, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Rank": 1, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Id": 731, - "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannel", + "Rank": 2, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 732, - "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannel", + "Rank": 3, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Id": 733, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage" + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Id": 734, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage" + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Id": 735, + "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Id": 736, + "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Id": 737, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Id": 738, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Id": 739, - "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 1, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Id": 740, - "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 2, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Id": 741, - "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 3, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Id": 742, - "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 4, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Id": 743, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Id": 744, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "Id": 745, - "Rank": 3, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 1, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Id": 746, - "Rank": 4, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 2, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Id": 747, - "Rank": 5, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 3, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 748, - "Rank": 1, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTab", + "Rank": 4, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 749, - "Rank": 2, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTab", + "Rank": 5, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "Command": "Get-PnPTeamsTeam", "Id": 750, + "CommandName": "Get-PnPTeamsTag", "Rank": 1, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Id": 751, + "CommandName": "Get-PnPTeamsTag", "Rank": 2, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Id": 752, - "Rank": 3, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 1, + "Command": "Get-PnPTeamsTeam" }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Id": 753, - "Rank": 4, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 2, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Id": 754, - "Rank": 5, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 3, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "Command": "Get-PnPTeamsUser -Team MyTeam", "Id": 755, - "Rank": 1, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 4, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Id": 756, - "Rank": 2, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 5, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Id": 757, - "Rank": 3, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Rank": 1, + "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Id": 758, - "Rank": 4, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Rank": 2, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "Command": "Get-PnPTemporarilyDisableAppBar", "Id": 759, - "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "CommandName": "Get-PnPTeamsUser", + "Rank": 3, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "Command": "Get-PnPTenant", "Id": 760, - "Rank": 1, - "CommandName": "Get-PnPTenant" + "CommandName": "Get-PnPTeamsUser", + "Rank": 4, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "Command": "Get-PnPTenantAppCatalogUrl", "Id": 761, + "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl" + "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Id": 762, + "CommandName": "Get-PnPTenant", "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled" + "Command": "Get-PnPTenant" }, { - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Id": 763, + "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin" + "Command": "Get-PnPTenantAppCatalogUrl" }, { - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Id": 764, + "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies" + "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "Command": "Get-PnPTenantDeletedSite", "Id": 765, + "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 766, - "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantCdnPolicies", + "Rank": 1, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Id": 767, - "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 1, + "Command": "Get-PnPTenantDeletedSite" }, { - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Id": 768, - "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 2, + "Command": "Get-PnPTenantDeletedSite -Detailed" }, { - "Command": "Get-PnPTenantId", "Id": 769, - "Rank": 1, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 3, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Get-PnPTenantId contoso", "Id": 770, - "Rank": 2, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 4, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Id": 771, - "Rank": 3, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 5, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Id": 772, - "Rank": 4, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Rank": 1, + "Command": "Get-PnPTenantId" }, { - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Id": 773, - "Rank": 1, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantId", + "Rank": 2, + "Command": "Get-PnPTenantId contoso" }, { - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Id": 774, - "Rank": 2, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantId", + "Rank": 3, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "Command": "Get-PnPTenantInfo", "Id": 775, - "Rank": 3, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantId", + "Rank": 4, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "Command": "Get-PnPTenantInfo -CurrentTenant", "Id": 776, - "Rank": 4, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Rank": 1, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "Command": "Get-PnPTenantInstance", "Id": 777, - "Rank": 1, - "CommandName": "Get-PnPTenantInstance" + "CommandName": "Get-PnPTenantInfo", + "Rank": 2, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "Command": "Get-PnPTenantRecycleBinItem", "Id": 778, - "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem" + "CommandName": "Get-PnPTenantInfo", + "Rank": 3, + "Command": "Get-PnPTenantInfo" }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Id": 779, - "Rank": 1, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantInfo", + "Rank": 4, + "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Id": 780, - "Rank": 2, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantInstance", + "Rank": 1, + "Command": "Get-PnPTenantInstance" }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Id": 781, + "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite" + "Command": "Get-PnPTenantRecycleBinItem" }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Id": 782, - "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequence", + "Rank": 1, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "Command": "Get-PnPTenantSite", "Id": 783, - "Rank": 1, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSequence", + "Rank": 2, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "Command": "Get-PnPTenantSite -Detailed", "Id": 784, - "Rank": 2, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 1, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Id": 785, - "Rank": 3, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 2, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Id": 786, - "Rank": 4, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 1, + "Command": "Get-PnPTenantSite" }, { - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Id": 787, - "Rank": 5, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 2, + "Command": "Get-PnPTenantSite -Detailed" }, { - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Id": 788, - "Rank": 6, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 3, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Id": 789, - "Rank": 7, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 4, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Id": 790, - "Rank": 8, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 5, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Id": 791, - "Rank": 9, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 6, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "Command": "Get-PnPTenantSyncClientRestriction", "Id": 792, - "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction" + "CommandName": "Get-PnPTenantSite", + "Rank": 7, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Id": 793, - "Rank": 1, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantSite", + "Rank": 8, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Id": 794, - "Rank": 2, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantSite", + "Rank": 9, + "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Id": 795, - "Rank": 3, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, + "Command": "Get-PnPTenantSyncClientRestriction" }, { - "Command": "Get-PnPTenantTheme", "Id": 796, + "CommandName": "Get-PnPTenantTemplate", "Rank": 1, - "CommandName": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 797, + "CommandName": "Get-PnPTenantTemplate", "Rank": 2, - "CommandName": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Id": 798, + "CommandName": "Get-PnPTenantTemplate", "Rank": 3, - "CommandName": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 799, + "CommandName": "Get-PnPTenantTheme", "Rank": 1, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTenantTheme" }, { - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 800, + "CommandName": "Get-PnPTenantTheme", "Rank": 2, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 801, + "CommandName": "Get-PnPTenantTheme", "Rank": 3, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Id": 802, - "Rank": 4, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 1, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Id": 803, - "Rank": 5, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 2, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTermGroup", "Id": 804, - "Rank": 1, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTerm", + "Rank": 3, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Id": 805, - "Rank": 2, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTerm", + "Rank": 4, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Id": 806, - "Rank": 3, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTerm", + "Rank": 5, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Id": 807, + "CommandName": "Get-PnPTermGroup", "Rank": 1, - "CommandName": "Get-PnPTermLabel" + "Command": "Get-PnPTermGroup" }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Id": 808, + "CommandName": "Get-PnPTermGroup", "Rank": 2, - "CommandName": "Get-PnPTermLabel" + "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 809, + "CommandName": "Get-PnPTermGroup", "Rank": 3, - "CommandName": "Get-PnPTermLabel" + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Id": 810, + "CommandName": "Get-PnPTermLabel", "Rank": 1, - "CommandName": "Get-PnPTermSet" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Id": 811, + "CommandName": "Get-PnPTermLabel", "Rank": 2, - "CommandName": "Get-PnPTermSet" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Id": 812, + "CommandName": "Get-PnPTermLabel", "Rank": 3, - "CommandName": "Get-PnPTermSet" + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTheme", "Id": 813, + "CommandName": "Get-PnPTermSet", "Rank": 1, - "CommandName": "Get-PnPTheme" + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Id": 814, + "CommandName": "Get-PnPTermSet", "Rank": 2, - "CommandName": "Get-PnPTheme" + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTimeZoneId", "Id": 815, - "Rank": 1, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTermSet", + "Rank": 3, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "Command": "Get-PnPTimeZoneId -Match Stockholm", "Id": 816, - "Rank": 2, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTheme", + "Rank": 1, + "Command": "Get-PnPTheme" }, { - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Id": 817, - "Rank": 1, - "CommandName": "Get-PnPUnfurlLink" + "CommandName": "Get-PnPTheme", + "Rank": 2, + "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Id": 818, + "CommandName": "Get-PnPTimeZoneId", "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog" + "Command": "Get-PnPTimeZoneId" }, { - "Command": "Get-PnPUPABulkImportStatus", "Id": 819, - "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPTimeZoneId", + "Rank": 2, + "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Id": 820, - "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUnfurlLink", + "Rank": 1, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "Command": "Get-PnPUPABulkImportStatus -JobId ", "Id": 821, - "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUnifiedAuditLog", + "Rank": 1, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Id": 822, - "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 1, + "Command": "Get-PnPUPABulkImportStatus" }, { - "Command": "Get-PnPUser", "Id": 823, - "Rank": 1, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 2, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "Command": "Get-PnPUser -Identity 23", "Id": 824, - "Rank": 2, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 3, + "Command": "Get-PnPUPABulkImportStatus -JobId " }, { - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Id": 825, - "Rank": 3, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 4, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" }, { - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Id": 826, - "Rank": 4, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 1, + "Command": "Get-PnPUser" }, { - "Command": "Get-PnPUser -WithRightsAssigned", "Id": 827, - "Rank": 5, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 2, + "Command": "Get-PnPUser -Identity 23" }, { - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Id": 828, - "Rank": 6, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 3, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Id": 829, - "Rank": 7, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 4, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Id": 830, - "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota" + "CommandName": "Get-PnPUser", + "Rank": 5, + "Command": "Get-PnPUser -WithRightsAssigned" }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Id": 831, - "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUser", + "Rank": 6, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Id": 832, - "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUser", + "Rank": 7, + "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Id": 833, - "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserOneDriveQuota", + "Rank": 1, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "Command": "Get-PnPView -List \"Demo List\"", "Id": 834, + "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, - "CommandName": "Get-PnPView" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Id": 835, + "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, - "CommandName": "Get-PnPView" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Id": 836, + "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, - "CommandName": "Get-PnPView" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "Command": "Get-PnPVivaConnectionsDashboardACE", "Id": 837, + "CommandName": "Get-PnPView", "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "Command": "Get-PnPView -List \"Demo List\"" }, { - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 838, + "CommandName": "Get-PnPView", "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "Command": "Get-PnPWeb", "Id": 839, - "Rank": 1, - "CommandName": "Get-PnPWeb" + "CommandName": "Get-PnPView", + "Rank": 3, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "Command": "Get-PnPWebHeader", "Id": 840, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "CommandName": "Get-PnPWebHeader" + "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "Command": "Get-PnPWebhookSubscriptions -List MyList", "Id": 841, - "Rank": 1, - "CommandName": "Get-PnPWebhookSubscriptions" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 2, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Id": 842, + "CommandName": "Get-PnPWeb", "Rank": 1, - "CommandName": "Get-PnPWebPart" + "Command": "Get-PnPWeb" }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 843, - "Rank": 2, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebHeader", + "Rank": 1, + "Command": "Get-PnPWebHeader" }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Id": 844, + "CommandName": "Get-PnPWebhookSubscription", "Rank": 1, - "CommandName": "Get-PnPWebPartProperty" + "Command": "Get-PnPWebhookSubscription -List MyList" }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Id": 845, - "Rank": 2, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPart", + "Rank": 1, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 846, - "Rank": 1, - "CommandName": "Get-PnPWebPartXml" + "CommandName": "Get-PnPWebPart", + "Rank": 2, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Command": "Get-PnPWebTemplates", "Id": 847, + "CommandName": "Get-PnPWebPartProperty", "Rank": 1, - "CommandName": "Get-PnPWebTemplates" + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "Command": "Get-PnPWebTemplates -LCID 1033", "Id": 848, + "CommandName": "Get-PnPWebPartProperty", "Rank": 2, - "CommandName": "Get-PnPWebTemplates" + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Id": 849, - "Rank": 3, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebPartXml", + "Rank": 1, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Id": 850, + "CommandName": "Get-PnPWebTemplates", "Rank": 1, - "CommandName": "Get-PnPWikiPageContent" + "Command": "Get-PnPWebTemplates" }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Id": 851, - "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPWebTemplates", + "Rank": 2, + "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Id": 852, - "Rank": 2, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPWebTemplates", + "Rank": 3, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 853, + "CommandName": "Get-PnPWikiPageContent", "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights" + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 854, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights" + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 855, - "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 2, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Id": 856, + "CommandName": "Grant-PnPHubSiteRights", "Rank": 1, - "CommandName": "Import-PnPTaxonomy" + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Id": 857, - "Rank": 2, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Grant-PnPSiteDesignRights", + "Rank": 1, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Id": 858, - "Rank": 3, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Rank": 1, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Id": 859, + "CommandName": "Import-PnPTaxonomy", "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Id": 860, + "CommandName": "Import-PnPTaxonomy", "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Id": 861, - "Rank": 1, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTaxonomy", + "Rank": 3, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", "Id": 862, - "Rank": 2, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 1, + "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "Id": 863, - "Rank": 3, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 2, + "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 864, + "CommandName": "Import-PnPTermSet", "Rank": 1, - "CommandName": "Install-PnPApp" + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 865, + "CommandName": "Import-PnPTermSet", "Rank": 2, - "CommandName": "Install-PnPApp" + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Id": 866, - "Rank": 1, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Import-PnPTermSet", + "Rank": 3, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Id": 867, - "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Install-PnPApp", + "Rank": 1, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Id": 868, - "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Install-PnPApp", + "Rank": 2, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Id": 869, - "Rank": 4, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 1, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Id": 870, - "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 2, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", "Id": 871, - "Rank": 6, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 3, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"", "Id": 872, - "Rank": 7, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 4, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 873, - "Rank": 1, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 5, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 874, - "Rank": 2, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 6, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "Command": "Invoke-PnPQuery -RetryCount 5", "Id": 875, - "Rank": 1, - "CommandName": "Invoke-PnPQuery" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 7, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"" }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 876, + "CommandName": "Invoke-PnPListDesign", "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 877, + "CommandName": "Invoke-PnPListDesign", "Rank": 2, - "CommandName": "Invoke-PnPSiteDesign" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Id": 878, + "CommandName": "Invoke-PnPQuery", "Rank": 1, - "CommandName": "Invoke-PnPSiteScript" + "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", "Id": 879, + "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, - "CommandName": "Invoke-PnPSiteSwap" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", "Id": 880, + "CommandName": "Invoke-PnPSiteDesign", "Rank": 2, - "CommandName": "Invoke-PnPSiteSwap" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", "Id": 881, - "Rank": 3, - "CommandName": "Invoke-PnPSiteSwap" + "CommandName": "Invoke-PnPSiteScript", + "Rank": 1, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Id": 882, + "CommandName": "Invoke-PnPSiteSwap", "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Id": 883, + "CommandName": "Invoke-PnPSiteSwap", "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 884, + "CommandName": "Invoke-PnPSiteSwap", "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Id": 885, - "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 1, + "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Id": 886, - "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 2, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Id": 887, - "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 3, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Id": 888, - "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 4, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Id": 889, - "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 5, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Id": 890, - "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 6, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Id": 891, - "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 7, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Id": 892, - "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 8, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 893, - "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPSPRestMethod", + "Rank": 1, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Id": 894, + "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, - "CommandName": "Invoke-PnPWebAction" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Id": 895, + "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, - "CommandName": "Invoke-PnPWebAction" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "Command": "Measure-PnPList \"Documents\"", "Id": 896, - "Rank": 1, - "CommandName": "Measure-PnPList" + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 3, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Id": 897, - "Rank": 2, - "CommandName": "Measure-PnPList" + "CommandName": "Invoke-PnPWebAction", + "Rank": 1, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "Command": "Measure-PnPWeb", "Id": 898, - "Rank": 1, - "CommandName": "Measure-PnPWeb" + "CommandName": "Invoke-PnPWebAction", + "Rank": 2, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "Command": "Measure-PnPWeb $web -Recursive", "Id": 899, - "Rank": 2, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPList", + "Rank": 1, + "Command": "Measure-PnPList \"Documents\"" }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Id": 900, - "Rank": 1, - "CommandName": "Move-PnPFile" + "CommandName": "Measure-PnPList", + "Rank": 2, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Id": 901, - "Rank": 2, - "CommandName": "Move-PnPFile" + "CommandName": "Measure-PnPWeb", + "Rank": 1, + "Command": "Measure-PnPWeb" }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Id": 902, - "Rank": 3, - "CommandName": "Move-PnPFile" + "CommandName": "Measure-PnPWeb", + "Rank": 2, + "Command": "Measure-PnPWeb $web -Recursive" }, { - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Id": 903, - "Rank": 4, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Rank": 1, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Id": 904, - "Rank": 1, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFile", + "Rank": 2, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Id": 905, - "Rank": 2, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFile", + "Rank": 3, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Id": 906, - "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin" + "CommandName": "Move-PnPFile", + "Rank": 4, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Id": 907, + "CommandName": "Move-PnPFolder", "Rank": 1, - "CommandName": "Move-PnPPageComponent" + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Id": 908, + "CommandName": "Move-PnPFolder", "Rank": 2, - "CommandName": "Move-PnPPageComponent" + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Id": 909, - "Rank": 3, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPListItemToRecycleBin", + "Rank": 1, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Id": 910, - "Rank": 4, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Rank": 1, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "Command": "Move-PnPRecycleBinItem", "Id": 911, - "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnPPageComponent", + "Rank": 2, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Id": 912, - "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnPPageComponent", + "Rank": 3, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "Command": "Move-PnPRecycleBinItem -Force", "Id": 913, - "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnPPageComponent", + "Rank": 4, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", "Id": 914, + "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, - "CommandName": "Move-PnPTerm" + "Command": "Move-PnPRecycleBinItem" }, { - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Id": 915, + "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, - "CommandName": "Move-PnPTerm" + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Id": 916, + "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, - "CommandName": "Move-PnPTerm" + "Command": "Move-PnPRecycleBinItem -Force" }, { - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", "Id": 917, + "CommandName": "Move-PnPTerm", "Rank": 1, - "CommandName": "Move-PnPTermSet" + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Id": 918, + "CommandName": "Move-PnPTerm", "Rank": 2, - "CommandName": "Move-PnPTermSet" + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Id": 919, - "Rank": 1, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "Move-PnPTerm", + "Rank": 3, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Id": 920, - "Rank": 2, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "Move-PnPTermSet", + "Rank": 1, + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Id": 921, - "Rank": 3, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "Move-PnPTermSet", + "Rank": 2, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Id": 922, + "CommandName": "New-PnPAzureADGroup", "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Id": 923, + "CommandName": "New-PnPAzureADGroup", "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Id": 924, + "CommandName": "New-PnPAzureADGroup", "Rank": 3, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Id": 925, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, - "CommandName": "New-PnPAzureCertificate" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Id": 926, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, - "CommandName": "New-PnPAzureCertificate" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Id": 927, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3, - "CommandName": "New-PnPAzureCertificate" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", "Id": 928, + "CommandName": "New-PnPAzureCertificate", "Rank": 1, - "CommandName": "New-PnPGraphSubscription" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "Id": 929, + "CommandName": "New-PnPAzureCertificate", "Rank": 2, - "CommandName": "New-PnPGraphSubscription" + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "Command": "New-PnPGroup -Title \"My Site Users\"", "Id": 930, - "Rank": 1, - "CommandName": "New-PnPGroup" + "CommandName": "New-PnPAzureCertificate", + "Rank": 3, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "Command": "New-PnPList -Title Announcements -Template Announcements", "Id": 931, - "Rank": 1, - "CommandName": "New-PnPList" + "CommandName": "New-PnPAzureCertificate", + "Rank": 4, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null" }, { - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Id": 932, - "Rank": 2, - "CommandName": "New-PnPList" + "CommandName": "New-PnPGraphSubscription", + "Rank": 1, + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Id": 933, - "Rank": 3, - "CommandName": "New-PnPList" + "CommandName": "New-PnPGraphSubscription", + "Rank": 2, + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Id": 934, + "CommandName": "New-PnPGroup", "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Id": 935, - "Rank": 2, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPList", + "Rank": 1, + "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Id": 936, - "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPList", + "Rank": 2, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Id": 937, - "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPList", + "Rank": 3, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Id": 938, - "Rank": 5, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 1, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 939, - "Rank": 6, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 2, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Id": 940, - "Rank": 7, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 3, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "Id": 941, - "Rank": 1, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 4, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Id": 942, - "Rank": 2, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 5, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Id": 943, - "Rank": 1, - "CommandName": "New-PnPPersonalSite" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 6, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Id": 944, - "Rank": 1, - "CommandName": "New-PnPPlannerPlan" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 7, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Id": 945, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 1, - "CommandName": "New-PnPSdnProvider" + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Id": 946, - "Rank": 1, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Id": 947, - "Rank": 2, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPPersonalSite", + "Rank": 1, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Id": 948, - "Rank": 3, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPPlannerPlan", + "Rank": 1, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Id": 949, - "Rank": 4, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSdnProvider", + "Rank": 1, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Id": 950, - "Rank": 5, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 1, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Id": 951, - "Rank": 6, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 2, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Id": 952, - "Rank": 7, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 3, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Id": 953, - "Rank": 8, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 4, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Id": 954, - "Rank": 9, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 5, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Id": 955, - "Rank": 10, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 6, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Id": 956, - "Rank": 11, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 7, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Id": 957, - "Rank": 12, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 8, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Id": 958, - "Rank": 13, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 9, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Id": 959, - "Rank": 14, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 10, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Id": 960, - "Rank": 15, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 11, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Id": 961, - "Rank": 16, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 12, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Command": "New-PnPSiteCollectionTermStore", "Id": 962, - "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore" + "CommandName": "New-PnPSite", + "Rank": 13, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Id": 963, - "Rank": 1, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSite", + "Rank": 14, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Id": 964, - "Rank": 2, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSite", + "Rank": 15, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Id": 965, - "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSite", + "Rank": 16, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Id": 966, - "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteCollectionTermStore", + "Rank": 1, + "Command": "New-PnPSiteCollectionTermStore" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Id": 967, - "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteGroup", + "Rank": 1, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Id": 968, - "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteGroup", + "Rank": 2, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Id": 969, - "Rank": 5, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 1, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 970, - "Rank": 6, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 2, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Id": 971, - "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 3, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Id": 972, - "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 4, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Id": 973, - "Rank": 1, - "CommandName": "New-PnPTeamsApp" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 5, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Id": 974, - "Rank": 1, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 6, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "New-PnPTeamsTeam -GroupId $groupId", "Id": 975, - "Rank": 2, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 7, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Id": 976, - "Rank": 3, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 8, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Id": 977, - "Rank": 4, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsApp", + "Rank": 1, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", "Id": 978, - "Rank": 5, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 1, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\" -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 979, - "Rank": 6, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 2, + "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", "Id": 980, - "Rank": 1, - "CommandName": "New-PnPTenantSite" + "CommandName": "New-PnPTeamsTeam", + "Rank": 3, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Id": 981, - "Rank": 2, - "CommandName": "New-PnPTenantSite" + "CommandName": "New-PnPTeamsTeam", + "Rank": 4, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Id": 982, - "Rank": 1, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTeamsTeam", + "Rank": 5, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 983, - "Rank": 2, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTeamsTeam", + "Rank": 6, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\" -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Id": 984, + "CommandName": "New-PnPTenantSite", "Rank": 1, - "CommandName": "New-PnPTermGroup" + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Id": 985, - "Rank": 1, - "CommandName": "New-PnPTermLabel" + "CommandName": "New-PnPTenantSite", + "Rank": 2, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Id": 986, + "CommandName": "New-PnPTerm", "Rank": 1, - "CommandName": "New-PnPTermSet" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Id": 987, - "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob" + "CommandName": "New-PnPTerm", + "Rank": 2, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", "Id": 988, - "Rank": 2, - "CommandName": "New-PnPUPABulkImportJob" + "CommandName": "New-PnPTermGroup", + "Rank": 1, + "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "Command": "New-PnPUser -LoginName user@company.com", "Id": 989, + "CommandName": "New-PnPTermLabel", "Rank": 1, - "CommandName": "New-PnPUser" + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Id": 990, + "CommandName": "New-PnPTermSet", "Rank": 1, - "CommandName": "New-PnPWeb" + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 991, + "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, - "CommandName": "Publish-PnPApp" + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Id": 992, + "CommandName": "New-PnPUPABulkImportJob", "Rank": 2, - "CommandName": "Publish-PnPApp" + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "Command": "Publish-PnPCompanyApp -PortalUrl https://contoso.sharepoint.com/sites/portal -AppName \"Contoso Portal\" -CompanyName \"Contoso\" -CompanyWebSite \"https://www.contoso.com\" -ColoredIconPath ./coloricon.png -OutlineIconPath ./outlinedicon", "Id": 993, + "CommandName": "New-PnPUser", "Rank": 1, - "CommandName": "Publish-PnPCompanyApp" + "Command": "New-PnPUser -LoginName user@company.com" }, { - "Command": "Publish-PnPContentType -ContentType 0x0101", "Id": 994, + "CommandName": "New-PnPWeb", "Rank": 1, - "CommandName": "Publish-PnPContentType" + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 995, + "CommandName": "Publish-PnPApp", "Rank": 1, - "CommandName": "Publish-PnPSyntexModel" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", "Id": 996, + "CommandName": "Publish-PnPApp", "Rank": 2, - "CommandName": "Publish-PnPSyntexModel" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp", "Id": 997, + "CommandName": "Publish-PnPCompanyApp", "Rank": 1, - "CommandName": "Read-PnPSiteTemplate" + "Command": "Publish-PnPCompanyApp -PortalUrl https://contoso.sharepoint.com/sites/portal -AppName \"Contoso Portal\" -CompanyName \"Contoso\" -CompanyWebSite \"https://www.contoso.com\" -ColoredIconPath ./coloricon.png -OutlineIconPath ./outlinedicon" }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Id": 998, - "Rank": 2, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Publish-PnPContentType", + "Rank": 1, + "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "Command": "Read-PnPSiteTemplate -Xml $xml", "Id": 999, - "Rank": 3, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Publish-PnPSyntexModel", + "Rank": 1, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Command": "Read-PnPTenantTemplate -Path template.pnp", "Id": 1000, - "Rank": 1, - "CommandName": "Read-PnPTenantTemplate" + "CommandName": "Publish-PnPSyntexModel", + "Rank": 2, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Id": 1001, + "CommandName": "Read-PnPSiteTemplate", "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite" + "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", "Id": 1002, - "Rank": 1, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Read-PnPSiteTemplate", + "Rank": 2, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\")", "Id": 1003, - "Rank": 2, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Read-PnPSiteTemplate", + "Rank": 3, + "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", "Id": 1004, - "Rank": 3, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Read-PnPTenantTemplate", + "Rank": 1, + "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -OutPath c:\\ -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", "Id": 1005, - "Rank": 4, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAppCatalogSite", + "Rank": 1, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Id": 1006, - "Rank": 5, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "Rank": 1, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Id": 1007, - "Rank": 6, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "Rank": 2, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\")" }, { - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png", "Id": 1008, - "Rank": 7, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "Rank": 3, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Id": 1009, - "Rank": 1, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPAzureADApp", + "Rank": 4, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -OutPath c:\\ -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Id": 1010, - "Rank": 2, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPAzureADApp", + "Rank": 5, + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Command": "Register-PnPManagementShellAccess", "Id": 1011, - "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPAzureADApp", + "Rank": 6, + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Id": 1012, - "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPAzureADApp", + "Rank": 7, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png" }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Id": 1013, - "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPHubSite", + "Rank": 1, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Id": 1014, - "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Register-PnPHubSite", + "Rank": 2, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Id": 1015, - "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 1, + "Command": "Register-PnPManagementShellAccess" }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Id": 1016, - "Rank": 1, - "CommandName": "Remove-PnPAlert" + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 2, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 1017, - "Rank": 2, - "CommandName": "Remove-PnPAlert" + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 3, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1018, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, - "CommandName": "Remove-PnPApp" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1019, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, - "CommandName": "Remove-PnPApp" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1020, + "CommandName": "Remove-PnPAlert", "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer" + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Id": 1021, + "CommandName": "Remove-PnPAlert", "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer" + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Id": 1022, + "CommandName": "Remove-PnPApp", "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Id": 1023, + "CommandName": "Remove-PnPApp", "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Command": "Remove-PnPAzureADApp -Identity MyApp", "Id": 1024, + "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, - "CommandName": "Remove-PnPAzureADApp" + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 1025, + "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, - "CommandName": "Remove-PnPAzureADApp" + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Id": 1026, + "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "Command": "Remove-PnPAzureADGroup -Identity $group", "Id": 1027, + "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1028, + "CommandName": "Remove-PnPAzureADApp", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember" + "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1029, - "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner" + "CommandName": "Remove-PnPAzureADApp", + "Rank": 2, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Id": 1030, + "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Id": 1031, + "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 1032, - "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADGroupMember", + "Rank": 1, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 1033, - "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADGroupOwner", + "Rank": 1, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Id": 1034, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, - "CommandName": "Remove-PnPContentType" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Id": 1035, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, - "CommandName": "Remove-PnPContentType" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 1036, - "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 3, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 1037, - "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 4, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Id": 1038, + "CommandName": "Remove-PnPContentType", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList" + "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1039, - "Rank": 1, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPContentType", + "Rank": 2, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Id": 1040, - "Rank": 2, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 1, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Id": 1041, - "Rank": 3, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 2, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1042, + "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 1043, + "CommandName": "Remove-PnPCustomAction", "Rank": 1, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 1044, + "CommandName": "Remove-PnPCustomAction", "Rank": 2, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Id": 1045, + "CommandName": "Remove-PnPCustomAction", "Rank": 3, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "Command": "Remove-PnPEventReceiver -List ProjectList", "Id": 1046, - "Rank": 4, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Rank": 1, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Command": "Remove-PnPEventReceiver", "Id": 1047, - "Rank": 5, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 1, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Command": "Remove-PnPEventReceiver -Scope Site", "Id": 1048, - "Rank": 6, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 2, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Command": "Remove-PnPEventReceiver -Scope Web", "Id": 1049, - "Rank": 7, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 3, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "Command": "Remove-PnPEventReceiver -Scope All", "Id": 1050, - "Rank": 8, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 4, + "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "Command": "Remove-PnPField -Identity \"Speakers\"", "Id": 1051, - "Rank": 1, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 5, + "Command": "Remove-PnPEventReceiver" }, { - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 1052, - "Rank": 2, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 6, + "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 1053, - "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 7, + "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Id": 1054, - "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 8, + "Command": "Remove-PnPEventReceiver -Scope All" }, { - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Id": 1055, + "CommandName": "Remove-PnPField", "Rank": 1, - "CommandName": "Remove-PnPFile" + "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Id": 1056, + "CommandName": "Remove-PnPField", "Rank": 2, - "CommandName": "Remove-PnPFile" + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Id": 1057, - "Rank": 3, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 1, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Id": 1058, - "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate" + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 2, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 1059, + "CommandName": "Remove-PnPFile", "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink" + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Id": 1060, + "CommandName": "Remove-PnPFile", "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1061, - "Rank": 1, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFile", + "Rank": 3, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1062, - "Rank": 2, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Rank": 1, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Id": 1063, - "Rank": 3, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 1, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Id": 1064, - "Rank": 1, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 2, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Id": 1065, - "Rank": 2, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFileVersion", + "Rank": 1, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "Id": 1066, - "Rank": 3, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFileVersion", + "Rank": 2, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Id": 1067, - "Rank": 4, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFileVersion", + "Rank": 3, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 1068, + "CommandName": "Remove-PnPFlowOwner", "Rank": 1, - "CommandName": "Remove-PnPFolder" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Id": 1069, + "CommandName": "Remove-PnPFlowOwner", "Rank": 2, - "CommandName": "Remove-PnPFolder" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 1070, - "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFlowOwner", + "Rank": 3, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Id": 1071, - "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFlowOwner", + "Rank": 4, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Id": 1072, + "CommandName": "Remove-PnPFolder", "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Command": "Remove-PnPGroup -Identity \"My Users\"", "Id": 1073, - "Rank": 1, - "CommandName": "Remove-PnPGroup" + "CommandName": "Remove-PnPFolder", + "Rank": 2, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 1074, + "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, - "CommandName": "Remove-PnPGroupMember" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Command": "Remove-PnPHomeSite", "Id": 1075, - "Rank": 1, - "CommandName": "Remove-PnPHomeSite" + "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 2, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1076, + "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation" + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Id": 1077, + "CommandName": "Remove-PnPGroup", "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation" + "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Id": 1078, - "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPGroupMember", + "Rank": 1, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Id": 1079, + "CommandName": "Remove-PnPHomeSite", "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty" + "Command": "Remove-PnPHomeSite" }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Id": 1080, + "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Id": 1081, - "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 1, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Id": 1082, - "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 2, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "Command": "Remove-PnPJavaScriptLink -Scope Site", "Id": 1083, - "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPIndexedProperty", + "Rank": 1, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Id": 1084, - "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 1, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "Command": "Remove-PnPKnowledgeHubSite", "Id": 1085, - "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 2, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "Command": "Remove-PnPList -Identity Announcements", "Id": 1086, - "Rank": 1, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 3, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "Command": "Remove-PnPList -Identity Announcements -Force", "Id": 1087, - "Rank": 2, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 4, + "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle", "Id": 1088, - "Rank": 3, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 5, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Id": 1089, - "Rank": 4, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPKnowledgeHubSite", + "Rank": 1, + "Command": "Remove-PnPKnowledgeHubSite" }, { - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1090, + "CommandName": "Remove-PnPList", "Rank": 1, - "CommandName": "Remove-PnPListDesign" + "Command": "Remove-PnPList -Identity Announcements" }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Id": 1091, - "Rank": 1, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPList", + "Rank": 2, + "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Id": 1092, - "Rank": 2, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPList", + "Rank": 3, + "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "Command": "Remove-PnPListItem -List \"Demo List\"", "Id": 1093, - "Rank": 3, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPList", + "Rank": 4, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Id": 1094, + "CommandName": "Remove-PnPListDesign", "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Id": 1095, - "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItem", + "Rank": 1, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Id": 1096, - "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItem", + "Rank": 2, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Id": 1097, - "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItem", + "Rank": 3, + "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Id": 1098, - "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 1, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Id": 1099, - "Rank": 1, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 2, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Id": 1100, - "Rank": 2, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 3, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Id": 1101, - "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 4, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Id": 1102, - "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 5, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1103, + "CommandName": "Remove-PnPListItemVersion", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1104, - "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "CommandName": "Remove-PnPListItemVersion", + "Rank": 2, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Id": 1105, + "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Id": 1106, + "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "Command": "Remove-PnPNavigationNode -Identity 1032", "Id": 1107, + "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, - "CommandName": "Remove-PnPNavigationNode" + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Id": 1108, - "Rank": 2, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Id": 1109, - "Rank": 3, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Id": 1110, - "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Id": 1111, - "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPNavigationNode", + "Rank": 1, + "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Id": 1112, - "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPNavigationNode", + "Rank": 2, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1113, - "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite" + "CommandName": "Remove-PnPNavigationNode", + "Rank": 3, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "Command": "Remove-PnPPage -Identity \"MyPage\"", "Id": 1114, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Id": 1115, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "Command": "Remove-PnPPage $page", "Id": 1116, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Id": 1117, - "Rank": 4, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPOrgNewsSite", + "Rank": 1, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1118, + "CommandName": "Remove-PnPPage", "Rank": 1, - "CommandName": "Remove-PnPPageComponent" + "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Id": 1119, - "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket" + "CommandName": "Remove-PnPPage", + "Rank": 2, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Id": 1120, - "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan" + "CommandName": "Remove-PnPPage", + "Rank": 3, + "Command": "Remove-PnPPage $page" }, { - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 1121, - "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster" + "CommandName": "Remove-PnPPage", + "Rank": 4, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 1122, + "CommandName": "Remove-PnPPageComponent", "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember" + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Id": 1123, + "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, - "CommandName": "Remove-PnPPlannerTask" + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Id": 1124, + "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue" + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Id": 1125, - "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPlannerRoster", + "Rank": 1, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Id": 1126, - "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPlannerRosterMember", + "Rank": 1, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 1127, + "CommandName": "Remove-PnPPlannerTask", "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition" + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Id": 1128, + "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition" + "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "Command": "Remove-PnPSdnProvider -Confirm:false", "Id": 1129, - "Rank": 1, - "CommandName": "Remove-PnPSdnProvider" + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 2, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Id": 1130, - "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 3, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Id": 1131, - "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPPublishingImageRendition", + "Rank": 1, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Id": 1132, - "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPRoleDefinition", + "Rank": 1, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 1133, - "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSdnProvider", + "Rank": 1, + "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 1134, + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1135, + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 1136, - "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 3, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Command": "Remove-PnPSiteCollectionTermStore", "Id": 1137, - "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore" + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 4, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1138, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, - "CommandName": "Remove-PnPSiteDesign" + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1139, - "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 2, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1140, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Remove-PnPSiteGroup" + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Id": 1141, - "Rank": 2, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Rank": 1, + "Command": "Remove-PnPSiteCollectionTermStore" }, { - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1142, + "CommandName": "Remove-PnPSiteDesign", "Rank": 1, - "CommandName": "Remove-PnPSiteScript" + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 1143, + "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations" + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Remove-PnPStorageEntity -Key MyKey", "Id": 1144, + "CommandName": "Remove-PnPSiteGroup", "Rank": 1, - "CommandName": "Remove-PnPStorageEntity" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Id": 1145, + "CommandName": "Remove-PnPSiteGroup", "Rank": 2, - "CommandName": "Remove-PnPStorageEntity" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Id": 1146, + "CommandName": "Remove-PnPSiteScript", "Rank": 1, - "CommandName": "Remove-PnPStoredCredential" + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Id": 1147, + "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem" + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Id": 1148, - "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPStorageEntity", + "Rank": 1, + "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Id": 1149, - "Rank": 1, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPStorageEntity", + "Rank": 2, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Id": 1150, - "Rank": 2, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPStoredCredential", + "Rank": 1, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Id": 1151, + "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Id": 1152, - "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 2, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Id": 1153, - "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsApp", + "Rank": 1, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Id": 1154, - "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsApp", + "Rank": 2, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Id": 1155, + "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, - "CommandName": "Remove-PnPTeamsTab" + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Id": 1156, - "Rank": 2, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 1, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "Id": 1157, - "Rank": 3, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 2, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 1158, - "Rank": 1, - "CommandName": "Remove-PnPTeamsTag" + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 3, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 1159, + "CommandName": "Remove-PnPTeamsTab", "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "Command": "Remove-PnPTeamsTeam -Identity testteam", "Id": 1160, + "CommandName": "Remove-PnPTeamsTab", "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Id": 1161, - "Rank": 1, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsTab", + "Rank": 3, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 1162, - "Rank": 2, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsTag", + "Rank": 1, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 1163, + "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin" + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1164, - "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTeamsTeam", + "Rank": 2, + "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Id": 1165, - "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTeamsUser", + "Rank": 1, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1166, - "Rank": 1, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTeamsUser", + "Rank": 2, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Id": 1167, - "Rank": 2, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantCdnOrigin", + "Rank": 1, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Id": 1168, - "Rank": 3, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 1, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Remove-PnPTenantSyncClientRestriction", "Id": 1169, - "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 2, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 1170, + "CommandName": "Remove-PnPTenantSite", "Rank": 1, - "CommandName": "Remove-PnPTenantTheme" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1171, - "Rank": 1, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTenantSite", + "Rank": 2, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1172, - "Rank": 2, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTenantSite", + "Rank": 3, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1173, + "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Remove-PnPTermGroup" + "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Id": 1174, - "Rank": 2, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTenantTheme", + "Rank": 1, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Id": 1175, - "Rank": 3, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTerm", + "Rank": 1, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Id": 1176, - "Rank": 1, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTerm", + "Rank": 2, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1177, - "Rank": 2, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermGroup", + "Rank": 1, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Command": "Remove-PnPUser -Identity 23", "Id": 1178, - "Rank": 1, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPTermGroup", + "Rank": 2, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Id": 1179, - "Rank": 2, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPTermGroup", + "Rank": 3, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Id": 1180, - "Rank": 3, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPTermLabel", + "Rank": 1, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 1181, - "Rank": 1, - "CommandName": "Remove-PnPUserInfo" + "CommandName": "Remove-PnPTermLabel", + "Rank": 2, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Id": 1182, + "CommandName": "Remove-PnPUser", "Rank": 1, - "CommandName": "Remove-PnPUserProfile" + "Command": "Remove-PnPUser -Identity 23" }, { - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Id": 1183, - "Rank": 1, - "CommandName": "Remove-PnPView" + "CommandName": "Remove-PnPUser", + "Rank": 2, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 1184, - "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "CommandName": "Remove-PnPUser", + "Rank": 3, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "Command": "Remove-PnPWeb -Identity projectA", "Id": 1185, + "CommandName": "Remove-PnPUserInfo", "Rank": 1, - "CommandName": "Remove-PnPWeb" + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Id": 1186, - "Rank": 2, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPUserProfile", + "Rank": 1, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Id": 1187, + "CommandName": "Remove-PnPView", "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription" + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1188, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, - "CommandName": "Remove-PnPWebPart" + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Id": 1189, - "Rank": 2, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWeb", + "Rank": 1, + "Command": "Remove-PnPWeb -Identity projectA" }, { - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Id": 1190, - "Rank": 1, - "CommandName": "Remove-PnPWikiPage" + "CommandName": "Remove-PnPWeb", + "Rank": 2, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Id": 1191, + "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, - "CommandName": "Rename-PnPFile" + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Id": 1192, - "Rank": 2, - "CommandName": "Rename-PnPFile" + "CommandName": "Remove-PnPWebPart", + "Rank": 1, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Id": 1193, - "Rank": 3, - "CommandName": "Rename-PnPFile" + "CommandName": "Remove-PnPWebPart", + "Rank": 2, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Id": 1194, + "CommandName": "Remove-PnPWikiPage", "Rank": 1, - "CommandName": "Rename-PnPFolder" + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1195, + "CommandName": "Rename-PnPFile", "Rank": 1, - "CommandName": "Repair-PnPSite" + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Id": 1196, + "CommandName": "Rename-PnPFile", "Rank": 2, - "CommandName": "Repair-PnPSite" + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "Command": "Request-PnPAccessToken", "Id": 1197, - "Rank": 1, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Rename-PnPFile", + "Rank": 3, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Id": 1198, - "Rank": 2, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Rename-PnPFolder", + "Rank": 1, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Id": 1199, - "Rank": 3, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Repair-PnPSite", + "Rank": 1, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Id": 1200, - "Rank": 4, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Repair-PnPSite", + "Rank": 2, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Id": 1201, + "CommandName": "Request-PnPAccessToken", "Rank": 1, - "CommandName": "Request-PnPPersonalSite" + "Command": "Request-PnPAccessToken" }, { - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Id": 1202, + "CommandName": "Request-PnPAccessToken", "Rank": 2, - "CommandName": "Request-PnPPersonalSite" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Id": 1203, - "Rank": 1, - "CommandName": "Request-PnPReIndexList" + "CommandName": "Request-PnPAccessToken", + "Rank": 3, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "Command": "Request-PnPReIndexWeb", "Id": 1204, - "Rank": 1, - "CommandName": "Request-PnPReIndexWeb" + "CommandName": "Request-PnPAccessToken", + "Rank": 4, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Id": 1205, + "CommandName": "Request-PnPPersonalSite", "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Id": 1206, + "CommandName": "Request-PnPPersonalSite", "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Id": 1207, - "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPReIndexList", + "Rank": 1, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Id": 1208, + "CommandName": "Request-PnPReIndexWeb", "Rank": 1, - "CommandName": "Reset-PnPFileVersion" + "Command": "Request-PnPReIndexWeb" }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Id": 1209, - "Rank": 2, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 1, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "Command": "Reset-PnPLabel -List \"Demo List\"", "Id": 1210, - "Rank": 1, - "CommandName": "Reset-PnPLabel" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 2, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Id": 1211, - "Rank": 2, - "CommandName": "Reset-PnPLabel" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 3, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "Command": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1212, + "CommandName": "Reset-PnPFileVersion", "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Id": 1213, - "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "CommandName": "Reset-PnPFileVersion", + "Rank": 2, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Id": 1214, + "CommandName": "Reset-PnPLabel", "Rank": 1, - "CommandName": "Resolve-PnPFolder" + "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1215, - "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "CommandName": "Reset-PnPLabel", + "Rank": 2, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1216, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "CommandName": "Restore-PnPFileVersion" + "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Id": 1217, - "Rank": 2, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Rank": 1, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1218, - "Rank": 3, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Resolve-PnPFolder", + "Rank": 1, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Id": 1219, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, - "CommandName": "Restore-PnPListItemVersion" + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Id": 1220, - "Rank": 2, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPFileVersion", + "Rank": 1, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 1221, - "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem" + "CommandName": "Restore-PnPFileVersion", + "Rank": 2, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1222, - "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPFileVersion", + "Rank": 3, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 1223, - "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPListItemVersion", + "Rank": 1, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1224, - "Rank": 1, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPListItemVersion", + "Rank": 2, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Id": 1225, - "Rank": 2, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPRecycleBinItem", + "Rank": 1, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Id": 1226, - "Rank": 3, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 1, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Id": 1227, - "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 2, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 1228, + "CommandName": "Restore-PnPTenantSite", "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 1229, - "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights" + "CommandName": "Restore-PnPTenantSite", + "Rank": 2, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 1230, - "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "CommandName": "Restore-PnPTenantSite", + "Rank": 3, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Id": 1231, + "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, - "CommandName": "Revoke-PnPUserSession" + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "Command": "Save-PnPPageConversionLog", "Id": 1232, + "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1, - "CommandName": "Save-PnPPageConversionLog" + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Id": 1233, + "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1, - "CommandName": "Save-PnPSiteTemplate" + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Id": 1234, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, - "CommandName": "Save-PnPTenantTemplate" + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Id": 1235, + "CommandName": "Revoke-PnPUserSession", "Rank": 1, - "CommandName": "Send-PnPMail" + "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "Command": "Send-PnPMail -From \"sharedmailbox@contoso.onmicrosoft.com\" -To \"recipient1@contoso.com\",\"recipient2@contoso.com\",\"recipient3@contoso.com\" -Cc \"recipient4@contoso.com\" -Bcc \"recipient5@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Importance Low", "Id": 1236, - "Rank": 2, - "CommandName": "Send-PnPMail" + "CommandName": "Save-PnPPageConversionLog", + "Rank": 1, + "Command": "Save-PnPPageConversionLog" }, { - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Id": 1237, - "Rank": 3, - "CommandName": "Send-PnPMail" + "CommandName": "Save-PnPSiteTemplate", + "Rank": 1, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.onmicrosoft.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server contoso.mail.protection.outlook.com", "Id": 1238, - "Rank": 4, - "CommandName": "Send-PnPMail" + "CommandName": "Save-PnPTenantTemplate", + "Rank": 1, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com", "Id": 1239, - "Rank": 5, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Rank": 1, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"", "Id": 1240, - "Rank": 6, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Rank": 2, + "Command": "Send-PnPMail -From \"sharedmailbox@contoso.onmicrosoft.com\" -To \"recipient1@contoso.com\",\"recipient2@contoso.com\",\"recipient3@contoso.com\" -Cc \"recipient4@contoso.com\" -Bcc \"recipient5@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Importance Low" }, { - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Id": 1241, - "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty" + "CommandName": "Send-PnPMail", + "Rank": 3, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1242, - "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer" + "CommandName": "Send-PnPMail", + "Rank": 4, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.onmicrosoft.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server contoso.mail.protection.outlook.com" }, { - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "Id": 1243, - "Rank": 2, - "CommandName": "Set-PnPApplicationCustomizer" + "CommandName": "Send-PnPMail", + "Rank": 5, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com" }, { - "Command": "Set-PnPAppSideLoading -On", "Id": 1244, - "Rank": 1, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Send-PnPMail", + "Rank": 6, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"" }, { - "Command": "Set-PnPAppSideLoading -Off", "Id": 1245, - "Rank": 2, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Rank": 1, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "Command": "Set-PnPAuditing -EnableAll", "Id": 1246, + "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, - "CommandName": "Set-PnPAuditing" + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Command": "Set-PnPAuditing -DisableAll", "Id": 1247, + "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2, - "CommandName": "Set-PnPAuditing" + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "Command": "Set-PnPAuditing -RetentionTime 7", "Id": 1248, - "Rank": 3, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAppSideLoading", + "Rank": 1, + "Command": "Set-PnPAppSideLoading -On" }, { - "Command": "Set-PnPAuditing -TrimAuditLog", "Id": 1249, - "Rank": 4, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAppSideLoading", + "Rank": 2, + "Command": "Set-PnPAppSideLoading -Off" }, { - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Id": 1250, - "Rank": 5, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 1, + "Command": "Set-PnPAuditing -EnableAll" }, { - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Id": 1251, - "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts" + "CommandName": "Set-PnPAuditing", + "Rank": 2, + "Command": "Set-PnPAuditing -DisableAll" }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Id": 1252, - "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAuditing", + "Rank": 3, + "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Id": 1253, - "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAuditing", + "Rank": 4, + "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Id": 1254, - "Rank": 1, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAuditing", + "Rank": 5, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Id": 1255, - "Rank": 2, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAvailablePageLayouts", + "Rank": 1, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Id": 1256, - "Rank": 3, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 1, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Id": 1257, - "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 2, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Id": 1258, - "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPAzureADGroup", + "Rank": 1, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Id": 1259, - "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPAzureADGroup", + "Rank": 2, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Id": 1260, - "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPAzureADGroup", + "Rank": 3, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Id": 1261, - "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 1, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Id": 1262, - "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 2, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Id": 1263, - "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 3, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Id": 1264, - "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 1, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Id": 1265, - "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 2, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Id": 1266, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Id": 1267, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Id": 1268, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Id": 1269, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Id": 1270, - "Rank": 5, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 1, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Id": 1271, - "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPContentType", + "Rank": 2, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Id": 1272, - "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPContentType", + "Rank": 3, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Id": 1273, - "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPContentType", + "Rank": 4, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Id": 1274, - "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPContentType", + "Rank": 5, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Id": 1275, + "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Id": 1276, - "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 2, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Id": 1277, - "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 3, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Id": 1278, - "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 4, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Id": 1279, + "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation" + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Id": 1280, - "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 1, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Id": 1281, - "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 2, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Id": 1282, - "Rank": 1, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 3, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Id": 1283, - "Rank": 2, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 1, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Id": 1284, - "Rank": 1, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 2, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Id": 1285, - "Rank": 2, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 3, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Id": 1286, - "Rank": 3, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPDocumentSetField", + "Rank": 1, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Id": 1287, - "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPDocumentSetField", + "Rank": 2, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Id": 1288, - "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPField", + "Rank": 1, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Id": 1289, - "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut" + "CommandName": "Set-PnPField", + "Rank": 2, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1290, - "Rank": 1, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPField", + "Rank": 3, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1291, - "Rank": 2, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 1, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Id": 1292, - "Rank": 3, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 2, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "Command": "Set-PnPFooter -Enabled:$true", "Id": 1293, + "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, - "CommandName": "Set-PnPFooter" + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Id": 1294, - "Rank": 2, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFolderPermission", + "Rank": 1, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Id": 1295, - "Rank": 3, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFolderPermission", + "Rank": 2, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Command": "Set-PnPFooter -LogoUrl \"\"", "Id": 1296, - "Rank": 4, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFolderPermission", + "Rank": 3, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Id": 1297, + "CommandName": "Set-PnPFooter", "Rank": 1, - "CommandName": "Set-PnPGraphSubscription" + "Command": "Set-PnPFooter -Enabled:$true" }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Id": 1298, - "Rank": 1, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPFooter", + "Rank": 2, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Id": 1299, - "Rank": 2, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPFooter", + "Rank": 3, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Id": 1300, - "Rank": 1, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPFooter", + "Rank": 4, + "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Id": 1301, - "Rank": 2, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGraphSubscription", + "Rank": 1, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Id": 1302, - "Rank": 3, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroup", + "Rank": 1, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Id": 1303, - "Rank": 4, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroup", + "Rank": 2, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Id": 1304, - "Rank": 5, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 1, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Id": 1305, - "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 2, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Id": 1306, - "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 3, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Id": 1307, - "Rank": 1, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 4, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Id": 1308, - "Rank": 2, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 5, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Id": 1309, + "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, - "CommandName": "Set-PnPHomeSite" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Id": 1310, + "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, - "CommandName": "Set-PnPHomeSite" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Id": 1311, + "CommandName": "Set-PnPHomePage", "Rank": 1, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Id": 1312, + "CommandName": "Set-PnPHomePage", "Rank": 2, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Id": 1313, - "Rank": 3, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHomeSite", + "Rank": 1, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Id": 1314, - "Rank": 4, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHomeSite", + "Rank": 2, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Id": 1315, - "Rank": 5, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 1, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Id": 1316, - "Rank": 6, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 2, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Id": 1317, - "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPHubSite", + "Rank": 3, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Id": 1318, - "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPHubSite", + "Rank": 4, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Id": 1319, - "Rank": 1, - "CommandName": "Set-PnPIndexedProperties" + "CommandName": "Set-PnPHubSite", + "Rank": 5, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Id": 1320, - "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPHubSite", + "Rank": 6, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Id": 1321, - "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 1, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Id": 1322, - "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite" + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 2, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Id": 1323, + "CommandName": "Set-PnPIndexedProperties", "Rank": 1, - "CommandName": "Set-PnPLabel" + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Id": 1324, - "Rank": 2, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 1, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Id": 1325, - "Rank": 1, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 2, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Id": 1326, - "Rank": 2, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPKnowledgeHubSite", + "Rank": 1, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Id": 1327, - "Rank": 3, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPLabel", + "Rank": 1, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Id": 1328, - "Rank": 4, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPLabel", + "Rank": 2, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Id": 1329, - "Rank": 5, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 1, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Id": 1330, - "Rank": 6, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 2, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Id": 1331, - "Rank": 7, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 3, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Id": 1332, - "Rank": 8, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 4, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Id": 1333, - "Rank": 9, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 5, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Id": 1334, - "Rank": 10, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 6, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Id": 1335, - "Rank": 11, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 7, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Id": 1336, - "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPList", + "Rank": 8, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Id": 1337, - "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPList", + "Rank": 9, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1338, - "Rank": 1, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPList", + "Rank": 10, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1339, - "Rank": 2, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPList", + "Rank": 11, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1340, - "Rank": 3, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 1, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Id": 1341, - "Rank": 4, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 2, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Id": 1342, - "Rank": 5, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 1, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 1343, - "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItem", + "Rank": 2, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Id": 1344, - "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItem", + "Rank": 3, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1345, - "Rank": 1, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItem", + "Rank": 4, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1346, - "Rank": 2, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItem", + "Rank": 5, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Id": 1347, - "Rank": 3, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 1, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Id": 1348, - "Rank": 4, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 2, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Id": 1349, - "Rank": 5, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 1, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1350, - "Rank": 1, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 2, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1351, - "Rank": 2, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 3, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Id": 1352, - "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListItemPermission", + "Rank": 4, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Id": 1353, - "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListItemPermission", + "Rank": 5, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Id": 1354, + "CommandName": "Set-PnPListPermission", "Rank": 1, - "CommandName": "Set-PnPMasterPage" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Id": 1355, + "CommandName": "Set-PnPListPermission", "Rank": 2, - "CommandName": "Set-PnPMasterPage" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Id": 1356, - "Rank": 3, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 1, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Id": 1357, - "Rank": 4, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 2, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Id": 1358, + "CommandName": "Set-PnPMasterPage", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Id": 1359, + "CommandName": "Set-PnPMasterPage", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1360, + "CommandName": "Set-PnPMasterPage", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Id": 1361, - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMasterPage", + "Rank": 4, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Id": 1362, - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1363, - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Id": 1364, - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Id": 1365, - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1366, - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Id": 1367, - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Id": 1368, - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1369, - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Id": 1370, - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Id": 1371, - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1372, - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Id": 1373, - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Id": 1374, - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1375, - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Id": 1376, - "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Id": 1377, - "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Id": 1378, - "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Id": 1379, - "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Id": 1380, - "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 1, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 1381, - "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 2, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Id": 1382, - "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 3, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Id": 1383, - "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 4, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "Command": "Set-PnPMinimalDownloadStrategy -Off", "Id": 1384, - "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 5, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "Command": "Set-PnPMinimalDownloadStrategy -On", "Id": 1385, - "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 6, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Id": 1386, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Id": 1387, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Id": 1388, - "Rank": 3, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 1, + "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Id": 1389, - "Rank": 4, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 2, + "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Id": 1390, - "Rank": 5, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 1, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Id": 1391, - "Rank": 6, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 2, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Id": 1392, - "Rank": 7, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 3, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Id": 1393, - "Rank": 8, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 4, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Id": 1394, - "Rank": 9, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 5, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Id": 1395, - "Rank": 10, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 6, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Id": 1396, - "Rank": 11, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 7, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Id": 1397, - "Rank": 1, - "CommandName": "Set-PnPPageTextPart" + "CommandName": "Set-PnPPage", + "Rank": 8, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Id": 1398, - "Rank": 1, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPage", + "Rank": 9, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Id": 1399, - "Rank": 2, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPage", + "Rank": 10, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Id": 1400, - "Rank": 1, - "CommandName": "Set-PnPPlannerBucket" + "CommandName": "Set-PnPPage", + "Rank": 11, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Id": 1401, + "CommandName": "Set-PnPPageTextPart", "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration" + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Id": 1402, - "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPageWebPart", + "Rank": 1, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Id": 1403, - "Rank": 1, - "CommandName": "Set-PnPPlannerPlan" + "CommandName": "Set-PnPPageWebPart", + "Rank": 2, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Id": 1404, + "CommandName": "Set-PnPPlannerBucket", "Rank": 1, - "CommandName": "Set-PnPPlannerTask" + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Id": 1405, - "Rank": 2, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 1, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Id": 1406, - "Rank": 3, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 2, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 1407, + "CommandName": "Set-PnPPlannerPlan", "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy" + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Id": 1408, + "CommandName": "Set-PnPPlannerTask", "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Id": 1409, + "CommandName": "Set-PnPPlannerTask", "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Id": 1410, + "CommandName": "Set-PnPPlannerTask", "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Id": 1411, + "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails" + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Command": "Set-PnPRequestAccessEmails -Disabled", "Id": 1412, - "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 1, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Id": 1413, - "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 2, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Id": 1414, - "Rank": 1, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 3, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Id": 1415, - "Rank": 2, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 1, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Id": 1416, - "Rank": 3, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 2, + "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Id": 1417, - "Rank": 4, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 3, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config", "Id": 1418, + "CommandName": "Set-PnPRoleDefinition", "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Id": 1419, + "CommandName": "Set-PnPRoleDefinition", "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Id": 1420, + "CommandName": "Set-PnPRoleDefinition", "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 1421, + "CommandName": "Set-PnPRoleDefinition", "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone", "Id": 1422, + "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, - "CommandName": "Set-PnPSearchExternalItem" + "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"", "Id": 1423, + "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, - "CommandName": "Set-PnPSearchExternalItem" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Id": 1424, - "Rank": 1, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 3, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Id": 1425, - "Rank": 2, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 4, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Id": 1426, - "Rank": 3, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchExternalItem", + "Rank": 1, + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone" }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Id": 1427, - "Rank": 4, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchExternalItem", + "Rank": 2, + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"" }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Id": 1428, - "Rank": 5, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 1, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Id": 1429, - "Rank": 6, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 2, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "Command": "Set-PnPSearchSettings -SearchScope Hub", "Id": 1430, - "Rank": 7, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 3, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "Command": "Set-PnPSite -Classification \"HBI\"", "Id": 1431, - "Rank": 1, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSearchSettings", + "Rank": 4, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "Command": "Set-PnPSite -Classification $null", "Id": 1432, - "Rank": 2, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSearchSettings", + "Rank": 5, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "Command": "Set-PnPSite -DisableFlows", "Id": 1433, - "Rank": 3, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSearchSettings", + "Rank": 6, + "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "Command": "Set-PnPSite -DisableFlows:$false", "Id": 1434, - "Rank": 4, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSearchSettings", + "Rank": 7, + "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Id": 1435, - "Rank": 5, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 1, + "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "Command": "Set-PnPSite -NoScriptSite $false", "Id": 1436, - "Rank": 6, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 2, + "Command": "Set-PnPSite -Classification $null" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Id": 1437, - "Rank": 7, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 3, + "Command": "Set-PnPSite -DisableFlows" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Id": 1438, - "Rank": 8, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 4, + "Command": "Set-PnPSite -DisableFlows:$false" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Id": 1439, - "Rank": 9, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 5, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Id": 1440, - "Rank": 10, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 6, + "Command": "Set-PnPSite -NoScriptSite $false" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Id": 1441, - "Rank": 11, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 7, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Id": 1442, - "Rank": 12, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 8, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Id": 1443, - "Rank": 13, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 9, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Id": 1444, - "Rank": 14, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 10, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Id": 1445, - "Rank": 15, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 11, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Id": 1446, - "Rank": 16, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 12, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "Command": "Set-PnPSite -CancelVPForExistingLibs", "Id": 1447, - "Rank": 17, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 13, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Id": 1448, - "Rank": 1, - "CommandName": "Set-PnPSiteClassification" + "CommandName": "Set-PnPSite", + "Rank": 14, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "Command": "Set-PnPSiteClosure -State Open", "Id": 1449, - "Rank": 1, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSite", + "Rank": 15, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "Command": "Set-PnPSiteClosure -State Closed", "Id": 1450, - "Rank": 2, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSite", + "Rank": 16, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Id": 1451, - "Rank": 1, - "CommandName": "Set-PnPSiteDesign" + "CommandName": "Set-PnPSite", + "Rank": 17, + "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Company Design\" -Description \"My description\" -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"", "Id": 1452, - "Rank": 2, - "CommandName": "Set-PnPSiteDesign" + "CommandName": "Set-PnPSiteClassification", + "Rank": 1, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Id": 1453, + "CommandName": "Set-PnPSiteClosure", "Rank": 1, - "CommandName": "Set-PnPSiteGroup" + "Command": "Set-PnPSiteClosure -State Open" }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Id": 1454, + "CommandName": "Set-PnPSiteClosure", "Rank": 2, - "CommandName": "Set-PnPSiteGroup" + "Command": "Set-PnPSiteClosure -State Closed" }, { - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Id": 1455, + "CommandName": "Set-PnPSiteDesign", "Rank": 1, - "CommandName": "Set-PnPSitePolicy" + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Id": 1456, - "Rank": 1, - "CommandName": "Set-PnPSiteScript" + "CommandName": "Set-PnPSiteDesign", + "Rank": 2, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Company Design\" -Description \"My description\" -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"" }, { - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Id": 1457, + "CommandName": "Set-PnPSiteGroup", "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage" + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Id": 1458, - "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteGroup", + "Rank": 2, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Id": 1459, - "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSitePolicy", + "Rank": 1, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Id": 1460, + "CommandName": "Set-PnPSiteScript", "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Id": 1461, - "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteScriptPackage", + "Rank": 1, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Id": 1462, - "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 1, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Id": 1463, - "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 2, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Id": 1464, - "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 1, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Id": 1465, - "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 2, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Id": 1466, - "Rank": 1, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 3, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Id": 1467, - "Rank": 2, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 4, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 1468, - "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 5, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 1469, - "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 6, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 1470, + "CommandName": "Set-PnPStorageEntity", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 1471, + "CommandName": "Set-PnPStorageEntity", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Id": 1472, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Id": 1473, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Id": 1474, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Id": 1475, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Id": 1476, - "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 1, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "Command": "Set-PnPTeamifyPromptHidden", "Id": 1477, - "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 2, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Id": 1478, + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, - "CommandName": "Set-PnPTeamsChannel" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Id": 1479, + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, - "CommandName": "Set-PnPTeamsChannel" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Id": 1480, - "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 3, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Id": 1481, - "Rank": 2, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnPTeamifyPromptHidden", + "Rank": 1, + "Command": "Set-PnPTeamifyPromptHidden" }, { - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Id": 1482, + "CommandName": "Set-PnPTeamsChannel", "Rank": 1, - "CommandName": "Set-PnPTeamsTab" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Id": 1483, - "Rank": 1, - "CommandName": "Set-PnPTeamsTag" + "CommandName": "Set-PnPTeamsChannel", + "Rank": 2, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Id": 1484, + "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1, - "CommandName": "Set-PnPTeamsTeam" + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Id": 1485, + "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2, - "CommandName": "Set-PnPTeamsTeam" + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Id": 1486, - "Rank": 3, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTab", + "Rank": 1, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Id": 1487, - "Rank": 4, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTag", + "Rank": 1, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Id": 1488, + "CommandName": "Set-PnPTeamsTeam", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Id": 1489, + "CommandName": "Set-PnPTeamsTeam", "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Id": 1490, + "CommandName": "Set-PnPTeamsTeam", "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Id": 1491, - "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture" + "CommandName": "Set-PnPTeamsTeam", + "Rank": 4, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "Command": "Set-PnPTemporarilyDisableAppBar $true", "Id": 1492, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "Command": "Set-PnPTemporarilyDisableAppBar $false", "Id": 1493, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "Id": 1494, - "Rank": 1, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 3, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Id": 1495, - "Rank": 2, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTeamsTeamPicture", + "Rank": 1, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Id": 1496, - "Rank": 3, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 1, + "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Id": 1497, - "Rank": 4, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 2, + "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Id": 1498, + "CommandName": "Set-PnPTenant", "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Id": 1499, - "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenant", + "Rank": 2, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Id": 1500, - "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenant", + "Rank": 3, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Id": 1501, - "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenant", + "Rank": 4, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "Id": 1502, + "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Set-PnPTenantCdnPolicy" + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Id": 1503, - "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy" + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 1, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Id": 1504, - "Rank": 1, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 2, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Id": 1505, - "Rank": 2, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 3, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Id": 1506, - "Rank": 3, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 1, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1507, - "Rank": 4, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 2, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Id": 1508, - "Rank": 5, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 1, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Id": 1509, - "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSite", + "Rank": 2, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Id": 1510, - "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSite", + "Rank": 3, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Id": 1511, - "Rank": 1, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTenantSite", + "Rank": 4, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 1512, - "Rank": 2, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTenantSite", + "Rank": 5, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 1513, - "Rank": 3, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 1, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Id": 1514, - "Rank": 4, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 2, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Id": 1515, + "CommandName": "Set-PnPTerm", "Rank": 1, - "CommandName": "Set-PnPTermGroup" + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Id": 1516, - "Rank": 1, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTerm", + "Rank": 2, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Id": 1517, - "Rank": 2, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTerm", + "Rank": 3, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Id": 1518, - "Rank": 3, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTerm", + "Rank": 4, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "Command": "Set-PnPTheme", "Id": 1519, + "CommandName": "Set-PnPTermGroup", "Rank": 1, - "CommandName": "Set-PnPTheme" + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Id": 1520, - "Rank": 2, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTermSet", + "Rank": 1, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Id": 1521, - "Rank": 3, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTermSet", + "Rank": 2, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Id": 1522, - "Rank": 4, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTermSet", + "Rank": 3, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Id": 1523, + "CommandName": "Set-PnPTheme", "Rank": 1, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTheme" }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Id": 1524, + "CommandName": "Set-PnPTheme", "Rank": 2, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Id": 1525, + "CommandName": "Set-PnPTheme", "Rank": 3, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "Command": "Set-PnPTraceLog -Off", "Id": 1526, + "CommandName": "Set-PnPTheme", "Rank": 4, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Id": 1527, + "CommandName": "Set-PnPTraceLog", "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Id": 1528, - "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPTraceLog", + "Rank": 2, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Id": 1529, - "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPTraceLog", + "Rank": 3, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Id": 1530, - "Rank": 1, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPTraceLog", + "Rank": 4, + "Command": "Set-PnPTraceLog -Off" }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Id": 1531, - "Rank": 2, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPUserOneDriveQuota", + "Rank": 1, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Id": 1532, - "Rank": 3, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPUserProfileProperty", + "Rank": 1, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Id": 1533, - "Rank": 4, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPUserProfileProperty", + "Rank": 2, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4 -CardSize Large -PropertiesJSON $myProperties", "Id": 1534, + "CommandName": "Set-PnPView", "Rank": 1, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Id": 1535, + "CommandName": "Set-PnPView", "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4", "Id": 1536, + "CommandName": "Set-PnPView", "Rank": 3, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Id": 1537, + "CommandName": "Set-PnPView", "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Id": 1538, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 1, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4 -CardSize Large -PropertiesJSON $myProperties" }, { - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Id": 1539, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Id": 1540, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 3, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4" }, { - "Command": "Set-PnPWeb -NoCrawl:$true", "Id": 1541, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Id": 1542, + "CommandName": "Set-PnPWeb", "Rank": 1, - "CommandName": "Set-PnPWebHeader" + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Id": 1543, + "CommandName": "Set-PnPWeb", "Rank": 2, - "CommandName": "Set-PnPWebHeader" + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Id": 1544, + "CommandName": "Set-PnPWeb", "Rank": 3, - "CommandName": "Set-PnPWebHeader" + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Id": 1545, - "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription" + "CommandName": "Set-PnPWeb", + "Rank": 4, + "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Id": 1546, - "Rank": 2, - "CommandName": "Set-PnPWebhookSubscription" + "CommandName": "Set-PnPWebHeader", + "Rank": 1, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "Id": 1547, - "Rank": 1, - "CommandName": "Set-PnPWebPartProperty" + "CommandName": "Set-PnPWebHeader", + "Rank": 2, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Id": 1548, - "Rank": 1, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebHeader", + "Rank": 3, + "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Id": 1549, - "Rank": 2, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebhookSubscription", + "Rank": 1, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Id": 1550, - "Rank": 3, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebhookSubscription", + "Rank": 2, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Id": 1551, - "Rank": 4, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPartProperty", + "Rank": 1, + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { - "Command": "Set-PnPWebTheme -Theme MyTheme", "Id": 1552, + "CommandName": "Set-PnPWebPermission", "Rank": 1, - "CommandName": "Set-PnPWebTheme" + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Id": 1553, + "CommandName": "Set-PnPWebPermission", "Rank": 2, - "CommandName": "Set-PnPWebTheme" + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Id": 1554, - "Rank": 1, - "CommandName": "Set-PnPWikiPageContent" + "CommandName": "Set-PnPWebPermission", + "Rank": 3, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Id": 1555, - "Rank": 1, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Set-PnPWebPermission", + "Rank": 4, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Id": 1556, - "Rank": 2, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Set-PnPWebTheme", + "Rank": 1, + "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Id": 1557, - "Rank": 3, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Set-PnPWebTheme", + "Rank": 2, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Id": 1558, - "Rank": 4, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Set-PnPWikiPageContent", + "Rank": 1, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Id": 1559, - "Rank": 5, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 1, + "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", "Id": 1560, - "Rank": 6, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 2, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Id": 1561, - "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 3, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Id": 1562, - "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 4, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1563, - "Rank": 1, - "CommandName": "Sync-PnPAppToTeams" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 5, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Id": 1564, - "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 6, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Id": 1565, - "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 1, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Id": 1566, - "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 2, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" }, { - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Id": 1567, + "CommandName": "Sync-PnPAppToTeams", "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord" + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Id": 1568, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1569, - "Rank": 1, - "CommandName": "Test-PnPSite" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 2, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Id": 1570, - "Rank": 2, - "CommandName": "Test-PnPSite" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 3, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Id": 1571, + "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, - "CommandName": "Test-PnPTenantTemplate" + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Id": 1572, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut" + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1573, + "CommandName": "Test-PnPSite", "Rank": 1, - "CommandName": "Uninstall-PnPApp" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1574, + "CommandName": "Test-PnPSite", "Rank": 2, - "CommandName": "Uninstall-PnPApp" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1575, + "CommandName": "Test-PnPTenantTemplate", "Rank": 1, - "CommandName": "Unpublish-PnPApp" + "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1576, - "Rank": 2, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Undo-PnPFileCheckedOut", + "Rank": 1, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Id": 1577, + "CommandName": "Uninstall-PnPApp", "Rank": 1, - "CommandName": "Unpublish-PnPContentType" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 1578, - "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel" + "CommandName": "Uninstall-PnPApp", + "Rank": 2, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", "Id": 1579, - "Rank": 2, - "CommandName": "Unpublish-PnPSyntexModel" + "CommandName": "Unpublish-PnPApp", + "Rank": 1, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Id": 1580, - "Rank": 1, - "CommandName": "Unregister-PnPHubSite" + "CommandName": "Unpublish-PnPApp", + "Rank": 2, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1581, + "CommandName": "Unpublish-PnPContentType", "Rank": 1, - "CommandName": "Update-PnPApp" + "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1582, - "Rank": 2, - "CommandName": "Update-PnPApp" + "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 1, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Id": 1583, - "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 2, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Id": 1584, - "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Unregister-PnPHubSite", + "Rank": 1, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 1585, - "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPApp", + "Rank": 1, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Id": 1586, - "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPApp", + "Rank": 2, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Id": 1587, - "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 1, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Id": 1588, - "Rank": 3, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 2, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Id": 1589, - "Rank": 1, - "CommandName": "Update-PnPTeamsApp" + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 3, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 1590, + "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, - "CommandName": "Update-PnPTeamsUser" + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Id": 1591, + "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, - "CommandName": "Update-PnPTeamsUser" + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Id": 1592, + "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3, - "CommandName": "Update-PnPTeamsUser" + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Id": 1593, + "CommandName": "Update-PnPTeamsApp", + "Rank": 1, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" + }, + { + "Id": 1594, + "CommandName": "Update-PnPTeamsUser", + "Rank": 1, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + }, + { + "Id": 1595, + "CommandName": "Update-PnPTeamsUser", + "Rank": 2, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + }, + { + "Id": 1596, + "CommandName": "Update-PnPTeamsUser", + "Rank": 3, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" + }, + { + "Id": 1597, + "CommandName": "Update-PnPUserType", "Rank": 1, - "CommandName": "Update-PnPUserType" + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } ] diff --git a/version.txt b/version.txt index fc8149c19..6d41fd14d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.125 \ No newline at end of file +2.2.126 \ No newline at end of file From 6d9a34fa3f43cccdea95db385e79b4e285a996cb Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Mon, 13 Nov 2023 02:40:52 +0000 Subject: [PATCH 6/7] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6388 ++++++++--------- version.txt | 2 +- 3 files changed, 3196 insertions(+), 3196 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index eb203c186..f665dde80 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -cc608314a52d175162dcaa4f9f9db2133816e842 \ No newline at end of file +52e8a74e033b38cd1d9bc568a994c69375ba1067 \ No newline at end of file diff --git a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json index aef7155ef..b6cd0a082 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9584 +1,9584 @@ [ { - "Id": 1, - "CommandName": "Add-PnPAlert", "Rank": 1, + "CommandName": "Add-PnPAlert", + "Id": 1, "Command": "Add-PnPAlert -List \"Demo List\"" }, { - "Id": 2, - "CommandName": "Add-PnPAlert", "Rank": 2, + "CommandName": "Add-PnPAlert", + "Id": 2, "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)" }, { - "Id": 3, - "CommandName": "Add-PnPAlert", "Rank": 3, + "CommandName": "Add-PnPAlert", + "Id": 3, "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 4, - "CommandName": "Add-PnPAlert", "Rank": 4, + "CommandName": "Add-PnPAlert", + "Id": 4, "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\" -Frequency Daily -Time ((Get-Date).AddDays(1))" }, { - "Id": 5, - "CommandName": "Add-PnPApp", "Rank": 1, + "CommandName": "Add-PnPApp", + "Id": 5, "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { - "Id": 6, - "CommandName": "Add-PnPApp", "Rank": 2, + "CommandName": "Add-PnPApp", + "Id": 6, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { - "Id": 7, - "CommandName": "Add-PnPApp", "Rank": 3, + "CommandName": "Add-PnPApp", + "Id": 7, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { - "Id": 8, - "CommandName": "Add-PnPApp", "Rank": 4, + "CommandName": "Add-PnPApp", + "Id": 8, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { - "Id": 9, - "CommandName": "Add-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Add-PnPApplicationCustomizer", + "Id": 9, "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}" }, { - "Id": 10, - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 10, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { - "Id": 11, - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 11, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { - "Id": 12, - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 12, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 13, - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 2, + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 13, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 14, - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3, + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 14, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Id": 15, - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 15, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 16, - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 2, + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 16, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 17, - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3, + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 17, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Id": 18, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 1, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Id": 18, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { - "Id": 19, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 2, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Id": 19, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" }, { - "Id": 20, - "CommandName": "Add-PnPContentType", "Rank": 1, + "CommandName": "Add-PnPContentType", + "Id": 20, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" }, { - "Id": 21, - "CommandName": "Add-PnPContentType", "Rank": 2, + "CommandName": "Add-PnPContentType", + "Id": 21, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"" }, { - "Id": 22, - "CommandName": "Add-PnPContentType", "Rank": 3, + "CommandName": "Add-PnPContentType", + "Id": 22, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" }, { - "Id": 23, - "CommandName": "Add-PnPContentType", "Rank": 4, + "CommandName": "Add-PnPContentType", + "Id": 23, "Command": "Add-PnPContentType -Name \"Project Item\"" }, { - "Id": 24, - "CommandName": "Add-PnPContentType", "Rank": 5, + "CommandName": "Add-PnPContentType", + "Id": 24, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { - "Id": 25, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 25, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { - "Id": 26, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 26, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { - "Id": 27, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1, + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 27, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Id": 28, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 28, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Id": 29, - "CommandName": "Add-PnPContentTypeToList", "Rank": 1, + "CommandName": "Add-PnPContentTypeToList", + "Id": 29, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" }, { - "Id": 30, - "CommandName": "Add-PnPCustomAction", "Rank": 1, + "CommandName": "Add-PnPCustomAction", + "Id": 30, "Command": "Add-PnPCustomAction -Title \"CollabFooter\" -Name \"CollabFooter\" -Location \"ClientSideExtension.ApplicationCustomizer\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "Id": 31, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 31, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { - "Id": 32, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 32, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" }, { - "Id": 33, - "CommandName": "Add-PnPDocumentSet", "Rank": 1, + "CommandName": "Add-PnPDocumentSet", + "Id": 33, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" }, { - "Id": 34, - "CommandName": "Add-PnPEventReceiver", "Rank": 1, + "CommandName": "Add-PnPEventReceiver", + "Id": 34, "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" }, { - "Id": 35, - "CommandName": "Add-PnPEventReceiver", "Rank": 2, + "CommandName": "Add-PnPEventReceiver", + "Id": 35, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" }, { - "Id": 36, - "CommandName": "Add-PnPEventReceiver", "Rank": 3, + "CommandName": "Add-PnPEventReceiver", + "Id": 36, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site" }, { - "Id": 37, - "CommandName": "Add-PnPEventReceiver", "Rank": 4, + "CommandName": "Add-PnPEventReceiver", + "Id": 37, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" }, { - "Id": 38, - "CommandName": "Add-PnPField", "Rank": 1, + "CommandName": "Add-PnPField", + "Id": 38, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { - "Id": 39, - "CommandName": "Add-PnPField", "Rank": 2, + "CommandName": "Add-PnPField", + "Id": 39, "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"" }, { - "Id": 40, - "CommandName": "Add-PnPField", "Rank": 3, + "CommandName": "Add-PnPField", + "Id": 40, "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"" }, { - "Id": 41, - "CommandName": "Add-PnPField", "Rank": 4, + "CommandName": "Add-PnPField", + "Id": 41, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { - "Id": 42, - "CommandName": "Add-PnPField", "Rank": 5, + "CommandName": "Add-PnPField", + "Id": 42, "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { - "Id": 43, - "CommandName": "Add-PnPField", "Rank": 6, + "CommandName": "Add-PnPField", + "Id": 43, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { - "Id": 44, - "CommandName": "Add-PnPFieldToContentType", "Rank": 1, + "CommandName": "Add-PnPFieldToContentType", + "Id": 44, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Id": 45, - "CommandName": "Add-PnPFile", "Rank": 1, + "CommandName": "Add-PnPFile", + "Id": 45, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { - "Id": 46, - "CommandName": "Add-PnPFile", "Rank": 2, + "CommandName": "Add-PnPFile", + "Id": 46, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { - "Id": 47, - "CommandName": "Add-PnPFile", "Rank": 3, + "CommandName": "Add-PnPFile", + "Id": 47, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 48, - "CommandName": "Add-PnPFile", "Rank": 4, + "CommandName": "Add-PnPFile", + "Id": 48, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 49, - "CommandName": "Add-PnPFile", "Rank": 5, + "CommandName": "Add-PnPFile", + "Id": 49, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 50, - "CommandName": "Add-PnPFile", "Rank": 6, + "CommandName": "Add-PnPFile", + "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" }, { - "Id": 51, - "CommandName": "Add-PnPFile", "Rank": 7, + "CommandName": "Add-PnPFile", + "Id": 51, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { - "Id": 52, - "CommandName": "Add-PnPFile", "Rank": 8, + "CommandName": "Add-PnPFile", + "Id": 52, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { - "Id": 53, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 53, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 54, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 54, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { - "Id": 55, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 3, + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 55, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Id": 56, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 56, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 57, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 57, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { - "Id": 58, - "CommandName": "Add-PnPFileSharingInvite", "Rank": 1, + "CommandName": "Add-PnPFileSharingInvite", + "Id": 58, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Id": 59, - "CommandName": "Add-PnPFileSharingInvite", "Rank": 2, + "CommandName": "Add-PnPFileSharingInvite", + "Id": 59, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { - "Id": 60, - "CommandName": "Add-PnPFileSharingInvite", "Rank": 3, + "CommandName": "Add-PnPFileSharingInvite", + "Id": 60, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { - "Id": 61, - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 61, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { - "Id": 62, - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 62, "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { - "Id": 63, - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 3, + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 63, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { - "Id": 64, - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4, + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 64, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { - "Id": 65, - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5, + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 65, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { - "Id": 66, - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileUserSharingLink", + "Id": 66, "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 67, - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileUserSharingLink", + "Id": 67, "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 68, - "CommandName": "Add-PnPFlowOwner", "Rank": 1, + "CommandName": "Add-PnPFlowOwner", + "Id": 68, "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit" }, { - "Id": 69, - "CommandName": "Add-PnPFlowOwner", "Rank": 2, + "CommandName": "Add-PnPFlowOwner", + "Id": 69, "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView" }, { - "Id": 70, - "CommandName": "Add-PnPFlowOwner", "Rank": 3, + "CommandName": "Add-PnPFlowOwner", + "Id": 70, "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare" }, { - "Id": 71, - "CommandName": "Add-PnPFlowOwner", "Rank": 4, + "CommandName": "Add-PnPFlowOwner", + "Id": 71, "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit" }, { - "Id": 72, - "CommandName": "Add-PnPFolder", "Rank": 1, + "CommandName": "Add-PnPFolder", + "Id": 72, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Id": 73, - "CommandName": "Add-PnPFolder", "Rank": 2, + "CommandName": "Add-PnPFolder", + "Id": 73, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { - "Id": 74, - "CommandName": "Add-PnPFolder", "Rank": 3, + "CommandName": "Add-PnPFolder", + "Id": 74, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { - "Id": 75, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 75, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 76, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 76, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { - "Id": 77, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 3, + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 77, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Id": 78, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 78, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 79, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 79, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { - "Id": 80, - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 1, + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 80, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Id": 81, - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 2, + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 81, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { - "Id": 82, - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 3, + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 82, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { - "Id": 83, - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderUserSharingLink", + "Id": 83, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 84, - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderUserSharingLink", + "Id": 84, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 85, - "CommandName": "Add-PnPGroupMember", "Rank": 1, + "CommandName": "Add-PnPGroupMember", + "Id": 85, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Id": 86, - "CommandName": "Add-PnPGroupMember", "Rank": 2, + "CommandName": "Add-PnPGroupMember", + "Id": 86, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { - "Id": 87, - "CommandName": "Add-PnPHtmlPublishingPageLayout", "Rank": 1, + "CommandName": "Add-PnPHtmlPublishingPageLayout", + "Id": 87, "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { - "Id": 88, - "CommandName": "Add-PnPHubSiteAssociation", "Rank": 1, + "CommandName": "Add-PnPHubSiteAssociation", + "Id": 88, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" }, { - "Id": 89, - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 1, + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 89, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { - "Id": 90, - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 2, + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 90, "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { - "Id": 91, - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 3, + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 91, "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/toplevelhub\"\r ; Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/thirdlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\"" }, { - "Id": 92, - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 1, + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 92, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" }, { - "Id": 93, - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" }, { - "Id": 94, - "CommandName": "Add-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Add-PnPJavaScriptLink", + "Id": 94, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" }, { - "Id": 95, - "CommandName": "Add-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Add-PnPJavaScriptLink", + "Id": 95, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { - "Id": 96, - "CommandName": "Add-PnPListDesign", "Rank": 1, + "CommandName": "Add-PnPListDesign", + "Id": 96, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { - "Id": 97, - "CommandName": "Add-PnPListDesign", "Rank": 2, + "CommandName": "Add-PnPListDesign", + "Id": 97, "Command": "Add-PnPListDesign -Title \"My Company Design\" -SiteScriptIds \"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -ListColor Orange -ListIcon BullseyeTarget -ThumbnailUrl \"https://contoso.sharepoint.com/SiteAssets/site-thumbnail.png\"" }, { - "Id": 98, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 98, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { - "Id": 99, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 99, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { - "Id": 100, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3, + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 100, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { - "Id": 101, - "CommandName": "Add-PnPListItem", "Rank": 1, + "CommandName": "Add-PnPListItem", + "Id": 101, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 102, - "CommandName": "Add-PnPListItem", "Rank": 2, + "CommandName": "Add-PnPListItem", + "Id": 102, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 103, - "CommandName": "Add-PnPListItem", "Rank": 3, + "CommandName": "Add-PnPListItem", + "Id": 103, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { - "Id": 104, - "CommandName": "Add-PnPListItem", "Rank": 4, + "CommandName": "Add-PnPListItem", + "Id": 104, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { - "Id": 105, - "CommandName": "Add-PnPListItem", "Rank": 5, + "CommandName": "Add-PnPListItem", + "Id": 105, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { - "Id": 106, - "CommandName": "Add-PnPListItemAttachment", "Rank": 1, + "CommandName": "Add-PnPListItemAttachment", + "Id": 106, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { - "Id": 107, - "CommandName": "Add-PnPListItemAttachment", "Rank": 2, + "CommandName": "Add-PnPListItemAttachment", + "Id": 107, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { - "Id": 108, - "CommandName": "Add-PnPListItemAttachment", "Rank": 3, + "CommandName": "Add-PnPListItemAttachment", + "Id": 108, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { - "Id": 109, - "CommandName": "Add-PnPListItemComment", "Rank": 1, + "CommandName": "Add-PnPListItemComment", + "Id": 109, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" }, { - "Id": 110, - "CommandName": "Add-PnPMasterPage", "Rank": 1, + "CommandName": "Add-PnPMasterPage", + "Id": 110, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" }, { - "Id": 111, - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 111, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 112, - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 112, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 113, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 113, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 114, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 114, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 115, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 115, "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" }, { - "Id": 116, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 116, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { - "Id": 117, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3, + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 117, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { - "Id": 118, - "CommandName": "Add-PnPNavigationNode", "Rank": 1, + "CommandName": "Add-PnPNavigationNode", + "Id": 118, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { - "Id": 119, - "CommandName": "Add-PnPNavigationNode", "Rank": 2, + "CommandName": "Add-PnPNavigationNode", + "Id": 119, "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" }, { - "Id": 120, - "CommandName": "Add-PnPNavigationNode", "Rank": 3, + "CommandName": "Add-PnPNavigationNode", + "Id": 120, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" }, { - "Id": 121, - "CommandName": "Add-PnPNavigationNode", "Rank": 4, + "CommandName": "Add-PnPNavigationNode", + "Id": 121, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { - "Id": 122, - "CommandName": "Add-PnPNavigationNode", "Rank": 5, + "CommandName": "Add-PnPNavigationNode", + "Id": 122, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { - "Id": 123, - "CommandName": "Add-PnPNavigationNode", "Rank": 6, + "CommandName": "Add-PnPNavigationNode", + "Id": 123, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { - "Id": 124, - "CommandName": "Add-PnPNavigationNode", "Rank": 7, + "CommandName": "Add-PnPNavigationNode", + "Id": 124, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { - "Id": 125, - "CommandName": "Add-PnPNavigationNode", "Rank": 8, + "CommandName": "Add-PnPNavigationNode", + "Id": 125, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { - "Id": 126, - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 126, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { - "Id": 127, - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 2, + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 127, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"" }, { - "Id": 128, - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 128, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { - "Id": 129, - "CommandName": "Add-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Add-PnPOrgNewsSite", + "Id": 129, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { - "Id": 130, - "CommandName": "Add-PnPPage", "Rank": 1, + "CommandName": "Add-PnPPage", + "Id": 130, "Command": "Add-PnPPage -Name \"NewPage\"" }, { - "Id": 131, - "CommandName": "Add-PnPPage", "Rank": 2, + "CommandName": "Add-PnPPage", + "Id": 131, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { - "Id": 132, - "CommandName": "Add-PnPPage", "Rank": 3, + "CommandName": "Add-PnPPage", + "Id": 132, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { - "Id": 133, - "CommandName": "Add-PnPPage", "Rank": 4, + "CommandName": "Add-PnPPage", + "Id": 133, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { - "Id": 134, - "CommandName": "Add-PnPPage", "Rank": 5, + "CommandName": "Add-PnPPage", + "Id": 134, "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { - "Id": 135, - "CommandName": "Add-PnPPage", "Rank": 6, + "CommandName": "Add-PnPPage", + "Id": 135, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { - "Id": 136, - "CommandName": "Add-PnPPage", "Rank": 7, + "CommandName": "Add-PnPPage", + "Id": 136, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Id": 137, - "CommandName": "Add-PnPPage", "Rank": 8, + "CommandName": "Add-PnPPage", + "Id": 137, "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { - "Id": 138, - "CommandName": "Add-PnPPage", "Rank": 9, + "CommandName": "Add-PnPPage", + "Id": 138, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Id": 139, - "CommandName": "Add-PnPPage", "Rank": 10, + "CommandName": "Add-PnPPage", + "Id": 139, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Id": 140, - "CommandName": "Add-PnPPageImageWebPart", "Rank": 1, + "CommandName": "Add-PnPPageImageWebPart", + "Id": 140, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { - "Id": 141, - "CommandName": "Add-PnPPageImageWebPart", "Rank": 2, + "CommandName": "Add-PnPPageImageWebPart", + "Id": 141, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"" }, { - "Id": 142, - "CommandName": "Add-PnPPageSection", "Rank": 1, + "CommandName": "Add-PnPPageSection", + "Id": 142, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { - "Id": 143, - "CommandName": "Add-PnPPageSection", "Rank": 2, + "CommandName": "Add-PnPPageSection", + "Id": 143, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { - "Id": 144, - "CommandName": "Add-PnPPageTextPart", "Rank": 1, + "CommandName": "Add-PnPPageTextPart", + "Id": 144, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { - "Id": 145, - "CommandName": "Add-PnPPageTextPart", "Rank": 2, + "CommandName": "Add-PnPPageTextPart", + "Id": 145, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { - "Id": 146, - "CommandName": "Add-PnPPageTextPart", "Rank": 3, + "CommandName": "Add-PnPPageTextPart", + "Id": 146, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"" }, { - "Id": 147, - "CommandName": "Add-PnPPageWebPart", "Rank": 1, + "CommandName": "Add-PnPPageWebPart", + "Id": 147, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { - "Id": 148, - "CommandName": "Add-PnPPageWebPart", "Rank": 2, + "CommandName": "Add-PnPPageWebPart", + "Id": 148, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { - "Id": 149, - "CommandName": "Add-PnPPageWebPart", "Rank": 3, + "CommandName": "Add-PnPPageWebPart", + "Id": 149, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { - "Id": 150, - "CommandName": "Add-PnPPlannerBucket", "Rank": 1, + "CommandName": "Add-PnPPlannerBucket", + "Id": 150, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { - "Id": 151, - "CommandName": "Add-PnPPlannerBucket", "Rank": 2, + "CommandName": "Add-PnPPlannerBucket", + "Id": 151, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { - "Id": 152, - "CommandName": "Add-PnPPlannerRoster", "Rank": 1, + "CommandName": "Add-PnPPlannerRoster", + "Id": 152, "Command": "Add-PnPPlannerRoster" }, { - "Id": 153, - "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Add-PnPPlannerRosterMember", + "Id": 153, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 154, - "CommandName": "Add-PnPPlannerTask", "Rank": 1, + "CommandName": "Add-PnPPlannerTask", + "Id": 154, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Id": 155, - "CommandName": "Add-PnPPlannerTask", "Rank": 2, + "CommandName": "Add-PnPPlannerTask", + "Id": 155, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Id": 156, - "CommandName": "Add-PnPPlannerTask", "Rank": 3, + "CommandName": "Add-PnPPlannerTask", + "Id": 156, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Id": 157, - "CommandName": "Add-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Add-PnPPublishingImageRendition", + "Id": 157, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Id": 158, - "CommandName": "Add-PnPPublishingPage", "Rank": 1, + "CommandName": "Add-PnPPublishingPage", + "Id": 158, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { - "Id": 159, - "CommandName": "Add-PnPPublishingPage", "Rank": 2, + "CommandName": "Add-PnPPublishingPage", + "Id": 159, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { - "Id": 160, - "CommandName": "Add-PnPPublishingPageLayout", "Rank": 1, + "CommandName": "Add-PnPPublishingPageLayout", + "Id": 160, "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { - "Id": 161, - "CommandName": "Add-PnPRoleDefinition", "Rank": 1, + "CommandName": "Add-PnPRoleDefinition", + "Id": 161, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { - "Id": 162, - "CommandName": "Add-PnPRoleDefinition", "Rank": 2, + "CommandName": "Add-PnPRoleDefinition", + "Id": 162, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { - "Id": 163, - "CommandName": "Add-PnPRoleDefinition", "Rank": 3, + "CommandName": "Add-PnPRoleDefinition", + "Id": 163, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { - "Id": 164, - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 164, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 165, - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 165, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 166, - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 166, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { - "Id": 167, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 167, "Command": "Add-PnPSiteCollectionAppCatalog" }, { - "Id": 168, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 168, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Id": 169, - "CommandName": "Add-PnPSiteDesign", "Rank": 1, + "CommandName": "Add-PnPSiteDesign", + "Id": 169, "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite" }, { - "Id": 170, - "CommandName": "Add-PnPSiteDesign", "Rank": 2, + "CommandName": "Add-PnPSiteDesign", + "Id": 170, "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png" }, { - "Id": 171, - "CommandName": "Add-PnPSiteDesign", "Rank": 3, + "CommandName": "Add-PnPSiteDesign", + "Id": 171, "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"" }, { - "Id": 172, - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 172, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { - "Id": 173, - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 2, + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 173, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Id": 174, - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 3, + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 174, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png" }, { - "Id": 175, - "CommandName": "Add-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Add-PnPSiteDesignTask", + "Id": 175, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Id": 176, - "CommandName": "Add-PnPSiteDesignTask", "Rank": 2, + "CommandName": "Add-PnPSiteDesignTask", + "Id": 176, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Id": 177, - "CommandName": "Add-PnPSiteScript", "Rank": 1, + "CommandName": "Add-PnPSiteScript", + "Id": 177, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" }, { - "Id": 178, - "CommandName": "Add-PnPSiteScriptPackage", "Rank": 1, + "CommandName": "Add-PnPSiteScriptPackage", + "Id": 178, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" }, { - "Id": 179, - "CommandName": "Add-PnPSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPSiteTemplate", + "Id": 179, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { - "Id": 180, - "CommandName": "Add-PnPStoredCredential", "Rank": 1, + "CommandName": "Add-PnPStoredCredential", + "Id": 180, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { - "Id": 181, - "CommandName": "Add-PnPStoredCredential", "Rank": 2, + "CommandName": "Add-PnPStoredCredential", + "Id": 181, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Id": 182, - "CommandName": "Add-PnPStoredCredential", "Rank": 3, + "CommandName": "Add-PnPStoredCredential", + "Id": 182, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"" }, { - "Id": 183, - "CommandName": "Add-PnPTaxonomyField", "Rank": 1, + "CommandName": "Add-PnPTaxonomyField", + "Id": 183, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { - "Id": 184, - "CommandName": "Add-PnPTaxonomyField", "Rank": 2, + "CommandName": "Add-PnPTaxonomyField", + "Id": 184, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { - "Id": 185, - "CommandName": "Add-PnPTeamsChannel", "Rank": 1, + "CommandName": "Add-PnPTeamsChannel", + "Id": 185, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { - "Id": 186, - "CommandName": "Add-PnPTeamsChannel", "Rank": 2, + "CommandName": "Add-PnPTeamsChannel", + "Id": 186, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { - "Id": 187, - "CommandName": "Add-PnPTeamsChannel", "Rank": 3, + "CommandName": "Add-PnPTeamsChannel", + "Id": 187, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { - "Id": 188, - "CommandName": "Add-PnPTeamsChannel", "Rank": 4, + "CommandName": "Add-PnPTeamsChannel", + "Id": 188, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { - "Id": 189, - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 1, + "CommandName": "Add-PnpTeamsChannelUser", + "Id": 189, "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner" }, { - "Id": 190, - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 2, + "CommandName": "Add-PnpTeamsChannelUser", + "Id": 190, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" }, { - "Id": 191, - "CommandName": "Add-PnPTeamsTab", "Rank": 1, + "CommandName": "Add-PnPTeamsTab", + "Id": 191, "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"" }, { - "Id": 192, - "CommandName": "Add-PnPTeamsTab", "Rank": 2, + "CommandName": "Add-PnPTeamsTab", + "Id": 192, "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type PDF -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/General/MyFile.pdf\" -EntityId \"null\"" }, { - "Id": 193, - "CommandName": "Add-PnPTeamsTab", "Rank": 3, + "CommandName": "Add-PnPTeamsTab", + "Id": 193, "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type SharePointPageAndList -WebSiteUrl \"https://contoso.sharepoint.com/sites/Marketing/SitePages/Home.aspx\"" }, { - "Id": 194, - "CommandName": "Add-PnPTeamsTab", "Rank": 4, + "CommandName": "Add-PnPTeamsTab", + "Id": 194, "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Excel Tab\" -Type Excel -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/My Excel File.csv\" -EntityId 6" }, { - "Id": 195, - "CommandName": "Add-PnPTeamsTeam", "Rank": 1, + "CommandName": "Add-PnPTeamsTeam", + "Id": 195, "Command": "Add-PnPTeamsTeam" }, { - "Id": 196, - "CommandName": "Add-PnPTeamsUser", "Rank": 1, + "CommandName": "Add-PnPTeamsUser", + "Id": 196, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 197, - "CommandName": "Add-PnPTeamsUser", "Rank": 2, + "CommandName": "Add-PnPTeamsUser", + "Id": 197, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Id": 198, - "CommandName": "Add-PnPTeamsUser", "Rank": 3, + "CommandName": "Add-PnPTeamsUser", + "Id": 198, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { - "Id": 199, - "CommandName": "Add-PnPTeamsUser", "Rank": 4, + "CommandName": "Add-PnPTeamsUser", + "Id": 199, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { - "Id": 200, - "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Add-PnPTenantCdnOrigin", + "Id": 200, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Id": 201, - "CommandName": "Add-PnPTenantSequence", "Rank": 1, + "CommandName": "Add-PnPTenantSequence", + "Id": 201, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { - "Id": 202, - "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSite", + "Id": 202, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { - "Id": 203, - "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSubSite", + "Id": 203, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { - "Id": 204, - "CommandName": "Add-PnPTermToTerm", "Rank": 1, + "CommandName": "Add-PnPTermToTerm", + "Id": 204, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" }, { - "Id": 205, - "CommandName": "Add-PnPView", "Rank": 1, + "CommandName": "Add-PnPView", + "Id": 205, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { - "Id": 206, - "CommandName": "Add-PnPView", "Rank": 2, + "CommandName": "Add-PnPView", + "Id": 206, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { - "Id": 207, - "CommandName": "Add-PnPView", "Rank": 3, + "CommandName": "Add-PnPView", + "Id": 207, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" }, { - "Id": 208, - "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Id": 208, "Command": "Add-PnPVivaConnectionsDashboardACE -Identity CardDesigner -Order 3 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Large -Description \"ACE description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" }, { - "Id": 209, - "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Id": 209, "Command": "Add-PnPVivaConnectionsDashboardACE -Identity ThirdPartyApp -Order 1 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Medium -Description \"ACE with description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" }, { - "Id": 210, - "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 3, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Id": 210, "Command": "Add-PnPVivaConnectionsDashboardACE -Identity AssignedTasks -Order 2 -Title \"Tasks\" -PropertiesJSON $myProperties -CardSize Medium -Description \"My Assigned tasks\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" }, { - "Id": 211, - "CommandName": "Add-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Add-PnPWebhookSubscription", + "Id": 211, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Id": 212, - "CommandName": "Add-PnPWebhookSubscription", "Rank": 2, + "CommandName": "Add-PnPWebhookSubscription", + "Id": 212, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Id": 213, - "CommandName": "Add-PnPWebhookSubscription", "Rank": 3, + "CommandName": "Add-PnPWebhookSubscription", + "Id": 213, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" }, { - "Id": 214, - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 1, + "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 214, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1" }, { - "Id": 215, - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 2, + "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 215, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { - "Id": 216, - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 1, + "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 216, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1" }, { - "Id": 217, - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 2, + "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 217, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" }, { - "Id": 218, - "CommandName": "Add-PnPWikiPage", "Rank": 1, + "CommandName": "Add-PnPWikiPage", + "Id": 218, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { - "Id": 219, - "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupMember", + "Id": 219, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { - "Id": 220, - "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupOwner", + "Id": 220, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { - "Id": 221, - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 221, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { - "Id": 222, - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 222, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { - "Id": 223, - "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Clear-PnPListItemAsRecord", + "Id": 223, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Id": 224, - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Id": 224, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { - "Id": 225, - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Id": 225, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { - "Id": 226, - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 226, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Id": 227, - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 227, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { - "Id": 228, - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 228, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { - "Id": 229, - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Id": 229, "Command": "Clear-PnPTenantAppCatalogUrl" }, { - "Id": 230, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 230, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 231, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 231, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Id": 232, - "CommandName": "Connect-PnPOnline", "Rank": 1, + "CommandName": "Connect-PnPOnline", + "Id": 232, "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"" }, { - "Id": 233, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 233, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "Id": 234, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 234, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "Id": 235, - "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplate", + "Id": 235, "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "Id": 236, - "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplate", + "Id": 236, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "Id": 237, - "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, + "CommandName": "Convert-PnPSiteTemplate", + "Id": 237, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "Id": 238, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 238, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "Id": 239, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 239, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "Id": 240, - "CommandName": "ConvertTo-PnPPage", "Rank": 1, + "CommandName": "ConvertTo-PnPPage", + "Id": 240, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "Id": 241, - "CommandName": "ConvertTo-PnPPage", "Rank": 2, + "CommandName": "ConvertTo-PnPPage", + "Id": 241, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "Id": 242, - "CommandName": "ConvertTo-PnPPage", "Rank": 3, + "CommandName": "ConvertTo-PnPPage", + "Id": 242, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "Id": 243, - "CommandName": "ConvertTo-PnPPage", "Rank": 4, + "CommandName": "ConvertTo-PnPPage", + "Id": 243, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "Id": 244, - "CommandName": "ConvertTo-PnPPage", "Rank": 5, + "CommandName": "ConvertTo-PnPPage", + "Id": 244, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 245, - "CommandName": "ConvertTo-PnPPage", "Rank": 6, + "CommandName": "ConvertTo-PnPPage", + "Id": 245, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "Id": 246, - "CommandName": "ConvertTo-PnPPage", "Rank": 7, + "CommandName": "ConvertTo-PnPPage", + "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "Id": 247, - "CommandName": "ConvertTo-PnPPage", "Rank": 8, + "CommandName": "ConvertTo-PnPPage", + "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" }, { - "Id": 248, - "CommandName": "ConvertTo-PnPPage", "Rank": 9, + "CommandName": "ConvertTo-PnPPage", + "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 249, - "CommandName": "ConvertTo-PnPPage", "Rank": 10, + "CommandName": "ConvertTo-PnPPage", + "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "Id": 250, - "CommandName": "ConvertTo-PnPPage", "Rank": 11, + "CommandName": "ConvertTo-PnPPage", + "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "Id": 251, - "CommandName": "ConvertTo-PnPPage", "Rank": 12, + "CommandName": "ConvertTo-PnPPage", + "Id": 251, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 252, - "CommandName": "ConvertTo-PnPPage", "Rank": 13, + "CommandName": "ConvertTo-PnPPage", + "Id": 252, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 253, - "CommandName": "ConvertTo-PnPPage", "Rank": 14, + "CommandName": "ConvertTo-PnPPage", + "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "Id": 254, - "CommandName": "Copy-PnPFile", "Rank": 1, + "CommandName": "Copy-PnPFile", + "Id": 254, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 255, - "CommandName": "Copy-PnPFile", "Rank": 2, + "CommandName": "Copy-PnPFile", + "Id": 255, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Id": 256, - "CommandName": "Copy-PnPFile", "Rank": 3, + "CommandName": "Copy-PnPFile", + "Id": 256, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Id": 257, - "CommandName": "Copy-PnPFile", "Rank": 4, + "CommandName": "Copy-PnPFile", + "Id": 257, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 258, - "CommandName": "Copy-PnPFile", "Rank": 5, + "CommandName": "Copy-PnPFile", + "Id": 258, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Id": 259, - "CommandName": "Copy-PnPFile", "Rank": 6, + "CommandName": "Copy-PnPFile", + "Id": 259, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Id": 260, - "CommandName": "Copy-PnPFile", "Rank": 7, + "CommandName": "Copy-PnPFile", + "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Id": 261, - "CommandName": "Copy-PnPFile", "Rank": 8, + "CommandName": "Copy-PnPFile", + "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 262, - "CommandName": "Copy-PnPFile", "Rank": 9, + "CommandName": "Copy-PnPFile", + "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Id": 263, - "CommandName": "Copy-PnPFile", "Rank": 10, + "CommandName": "Copy-PnPFile", + "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Id": 264, - "CommandName": "Copy-PnPFolder", "Rank": 1, + "CommandName": "Copy-PnPFolder", + "Id": 264, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 265, - "CommandName": "Copy-PnPFolder", "Rank": 2, + "CommandName": "Copy-PnPFolder", + "Id": 265, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Id": 266, - "CommandName": "Copy-PnPFolder", "Rank": 3, + "CommandName": "Copy-PnPFolder", + "Id": 266, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Id": 267, - "CommandName": "Copy-PnPFolder", "Rank": 4, + "CommandName": "Copy-PnPFolder", + "Id": 267, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 268, - "CommandName": "Copy-PnPFolder", "Rank": 5, + "CommandName": "Copy-PnPFolder", + "Id": 268, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Id": 269, - "CommandName": "Copy-PnPFolder", "Rank": 6, + "CommandName": "Copy-PnPFolder", + "Id": 269, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Id": 270, - "CommandName": "Copy-PnPFolder", "Rank": 7, + "CommandName": "Copy-PnPFolder", + "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Id": 271, - "CommandName": "Copy-PnPFolder", "Rank": 8, + "CommandName": "Copy-PnPFolder", + "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 272, - "CommandName": "Copy-PnPFolder", "Rank": 9, + "CommandName": "Copy-PnPFolder", + "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Id": 273, - "CommandName": "Copy-PnPFolder", "Rank": 10, + "CommandName": "Copy-PnPFolder", + "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Id": 274, - "CommandName": "Copy-PnPItemProxy", "Rank": 1, + "CommandName": "Copy-PnPItemProxy", + "Id": 274, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "Id": 275, - "CommandName": "Copy-PnPList", "Rank": 1, + "CommandName": "Copy-PnPList", + "Id": 275, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "Id": 276, - "CommandName": "Copy-PnPList", "Rank": 2, + "CommandName": "Copy-PnPList", + "Id": 276, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "Id": 277, - "CommandName": "Copy-PnPList", "Rank": 3, + "CommandName": "Copy-PnPList", + "Id": 277, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "Id": 278, - "CommandName": "Copy-PnPList", "Rank": 4, + "CommandName": "Copy-PnPList", + "Id": 278, "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { - "Id": 279, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 279, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "Id": 280, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 280, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "Id": 281, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 3, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 281, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Id": 282, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 4, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 282, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Id": 283, - "CommandName": "Disable-PnPFeature", "Rank": 1, + "CommandName": "Disable-PnPFeature", + "Id": 283, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 284, - "CommandName": "Disable-PnPFeature", "Rank": 2, + "CommandName": "Disable-PnPFeature", + "Id": 284, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Id": 285, - "CommandName": "Disable-PnPFeature", "Rank": 3, + "CommandName": "Disable-PnPFeature", + "Id": 285, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Id": 286, - "CommandName": "Disable-PnPPageScheduling", "Rank": 1, + "CommandName": "Disable-PnPPageScheduling", + "Id": 286, "Command": "Disable-PnPPageScheduling" }, { - "Id": 287, - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 287, "Command": "Disable-PnPPowerShellTelemetry" }, { - "Id": 288, - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 288, "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "Id": 289, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 289, "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Id": 290, - "CommandName": "Disable-PnPSiteClassification", "Rank": 1, + "CommandName": "Disable-PnPSiteClassification", + "Id": 290, "Command": "Disable-PnPSiteClassification" }, { - "Id": 291, - "CommandName": "Disconnect-PnPOnline", "Rank": 1, + "CommandName": "Disconnect-PnPOnline", + "Id": 291, "Command": "Disconnect-PnPOnline" }, { - "Id": 292, - "CommandName": "Enable-PnPCommSite", "Rank": 1, + "CommandName": "Enable-PnPCommSite", + "Id": 292, "Command": "Enable-PnPCommSite" }, { - "Id": 293, - "CommandName": "Enable-PnPCommSite", "Rank": 2, + "CommandName": "Enable-PnPCommSite", + "Id": 293, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "Id": 294, - "CommandName": "Enable-PnPFeature", "Rank": 1, + "CommandName": "Enable-PnPFeature", + "Id": 294, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 295, - "CommandName": "Enable-PnPFeature", "Rank": 2, + "CommandName": "Enable-PnPFeature", + "Id": 295, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Id": 296, - "CommandName": "Enable-PnPFeature", "Rank": 3, + "CommandName": "Enable-PnPFeature", + "Id": 296, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Id": 297, - "CommandName": "Enable-PnPPageScheduling", "Rank": 1, + "CommandName": "Enable-PnPPageScheduling", + "Id": 297, "Command": "Enable-PnPPageScheduling" }, { - "Id": 298, - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 298, "Command": "Enable-PnPPowerShellTelemetry" }, { - "Id": 299, - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 299, "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "Id": 300, - "CommandName": "Enable-PnPSiteClassification", "Rank": 1, + "CommandName": "Enable-PnPSiteClassification", + "Id": 300, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "Id": 301, - "CommandName": "Enable-PnPSiteClassification", "Rank": 2, + "CommandName": "Enable-PnPSiteClassification", + "Id": 301, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Id": 302, - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 302, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "Id": 303, - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 303, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "Id": 304, - "CommandName": "Export-PnPPage", "Rank": 1, + "CommandName": "Export-PnPPage", + "Id": 304, "Command": "Export-PnPPage -Identity Home.aspx" }, { - "Id": 305, - "CommandName": "Export-PnPPageMapping", "Rank": 1, + "CommandName": "Export-PnPPageMapping", + "Id": 305, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "Id": 306, - "CommandName": "Export-PnPPageMapping", "Rank": 2, + "CommandName": "Export-PnPPageMapping", + "Id": 306, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "Id": 307, - "CommandName": "Export-PnPPageMapping", "Rank": 3, + "CommandName": "Export-PnPPageMapping", + "Id": 307, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "Id": 308, - "CommandName": "Export-PnPTaxonomy", "Rank": 1, + "CommandName": "Export-PnPTaxonomy", + "Id": 308, "Command": "Export-PnPTaxonomy" }, { - "Id": 309, - "CommandName": "Export-PnPTaxonomy", "Rank": 2, + "CommandName": "Export-PnPTaxonomy", + "Id": 309, "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "Id": 310, - "CommandName": "Export-PnPTaxonomy", "Rank": 3, + "CommandName": "Export-PnPTaxonomy", + "Id": 310, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "Id": 311, - "CommandName": "Export-PnPTaxonomy", "Rank": 4, + "CommandName": "Export-PnPTaxonomy", + "Id": 311, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "Id": 312, - "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, + "CommandName": "Export-PnPTermGroupToXml", + "Id": 312, "Command": "Export-PnPTermGroupToXml" }, { - "Id": 313, - "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, + "CommandName": "Export-PnPTermGroupToXml", + "Id": 313, "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "Id": 314, - "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, + "CommandName": "Export-PnPTermGroupToXml", + "Id": 314, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "Id": 315, - "CommandName": "Export-PnPUserInfo", "Rank": 1, + "CommandName": "Export-PnPUserInfo", + "Id": 315, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Id": 316, - "CommandName": "Export-PnPUserInfo", "Rank": 2, + "CommandName": "Export-PnPUserInfo", + "Id": 316, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Id": 317, - "CommandName": "Export-PnPUserProfile", "Rank": 1, + "CommandName": "Export-PnPUserProfile", + "Id": 317, "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "Id": 318, - "CommandName": "Export-PnPUserProfile", "Rank": 2, + "CommandName": "Export-PnPUserProfile", + "Id": 318, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Id": 319, - "CommandName": "Find-PnPFile", "Rank": 1, + "CommandName": "Find-PnPFile", + "Id": 319, "Command": "Find-PnPFile -Match *.master" }, { - "Id": 320, - "CommandName": "Find-PnPFile", "Rank": 2, + "CommandName": "Find-PnPFile", + "Id": 320, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "Id": 321, - "CommandName": "Find-PnPFile", "Rank": 3, + "CommandName": "Find-PnPFile", + "Id": 321, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "Id": 322, - "CommandName": "Get-PnPAccessToken", "Rank": 1, + "CommandName": "Get-PnPAccessToken", + "Id": 322, "Command": "Get-PnPAccessToken" }, { - "Id": 323, - "CommandName": "Get-PnPAccessToken", "Rank": 2, + "CommandName": "Get-PnPAccessToken", + "Id": 323, "Command": "Get-PnPAccessToken -Decoded" }, { - "Id": 324, - "CommandName": "Get-PnPAccessToken", "Rank": 3, + "CommandName": "Get-PnPAccessToken", + "Id": 324, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "Id": 325, - "CommandName": "Get-PnPAccessToken", "Rank": 4, + "CommandName": "Get-PnPAccessToken", + "Id": 325, "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "Id": 326, - "CommandName": "Get-PnPAccessToken", "Rank": 5, + "CommandName": "Get-PnPAccessToken", + "Id": 326, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "Id": 327, - "CommandName": "Get-PnPAlert", "Rank": 1, + "CommandName": "Get-PnPAlert", + "Id": 327, "Command": "Get-PnPAlert" }, { - "Id": 328, - "CommandName": "Get-PnPAlert", "Rank": 2, + "CommandName": "Get-PnPAlert", + "Id": 328, "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "Id": 329, - "CommandName": "Get-PnPAlert", "Rank": 3, + "CommandName": "Get-PnPAlert", + "Id": 329, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 330, - "CommandName": "Get-PnPAlert", "Rank": 4, + "CommandName": "Get-PnPAlert", + "Id": 330, "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "Id": 331, - "CommandName": "Get-PnPAlert", "Rank": 5, + "CommandName": "Get-PnPAlert", + "Id": 331, "Command": "Get-PnPAlert -AllUsers" }, { - "Id": 332, - "CommandName": "Get-PnPAlert", "Rank": 6, + "CommandName": "Get-PnPAlert", + "Id": 332, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "Id": 333, - "CommandName": "Get-PnPApp", "Rank": 1, + "CommandName": "Get-PnPApp", + "Id": 333, "Command": "Get-PnPApp" }, { - "Id": 334, - "CommandName": "Get-PnPApp", "Rank": 2, + "CommandName": "Get-PnPApp", + "Id": 334, "Command": "Get-PnPApp -Scope Site" }, { - "Id": 335, - "CommandName": "Get-PnPApp", "Rank": 3, + "CommandName": "Get-PnPApp", + "Id": 335, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 336, - "CommandName": "Get-PnPAppErrors", "Rank": 1, + "CommandName": "Get-PnPAppErrors", + "Id": 336, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "Id": 337, - "CommandName": "Get-PnPAppErrors", "Rank": 2, + "CommandName": "Get-PnPAppErrors", + "Id": 337, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "Id": 338, - "CommandName": "Get-PnPAppInfo", "Rank": 1, + "CommandName": "Get-PnPAppInfo", + "Id": 338, "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "Id": 339, - "CommandName": "Get-PnPAppInfo", "Rank": 2, + "CommandName": "Get-PnPAppInfo", + "Id": 339, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 340, - "CommandName": "Get-PnPAppInfo", "Rank": 3, + "CommandName": "Get-PnPAppInfo", + "Id": 340, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "Id": 341, - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 341, "Command": "Get-PnPApplicationCustomizer" }, { - "Id": 342, - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 342, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 343, - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 343, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "Id": 344, - "CommandName": "Get-PnPAuditing", "Rank": 1, + "CommandName": "Get-PnPAuditing", + "Id": 344, "Command": "Get-PnPAuditing" }, { - "Id": 345, - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 345, "Command": "Get-PnPAuthenticationRealm" }, { - "Id": 346, - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 346, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "Id": 347, - "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, + "CommandName": "Get-PnPAvailableLanguage", + "Id": 347, "Command": "Get-PnPAvailableLanguage" }, { - "Id": 348, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 348, "Command": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 349, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 349, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "Id": 350, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 350, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "Id": 351, - "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Get-PnPAvailableSiteClassification", + "Id": 351, "Command": "Get-PnPAvailableSiteClassification" }, { - "Id": 352, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 352, "Command": "Get-PnPAzureACSPrincipal" }, { - "Id": 353, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 353, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "Id": 354, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 354, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "Id": 355, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 355, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "Id": 356, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 356, "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 357, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 357, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "Id": 358, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 358, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "Id": 359, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 359, "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 360, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 360, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "Id": 361, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 361, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "Id": 362, - "CommandName": "Get-PnPAzureADApp", "Rank": 1, + "CommandName": "Get-PnPAzureADApp", + "Id": 362, "Command": "Get-PnPAzureADApp" }, { - "Id": 363, - "CommandName": "Get-PnPAzureADApp", "Rank": 2, + "CommandName": "Get-PnPAzureADApp", + "Id": 363, "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "Id": 364, - "CommandName": "Get-PnPAzureADApp", "Rank": 3, + "CommandName": "Get-PnPAzureADApp", + "Id": 364, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 365, - "CommandName": "Get-PnPAzureADApp", "Rank": 4, + "CommandName": "Get-PnPAzureADApp", + "Id": 365, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 366, - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 366, "Command": "Get-PnPAzureADAppPermission" }, { - "Id": 367, - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 367, "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "Id": 368, - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 368, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 369, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 369, "Command": "Get-PnPAzureADAppSitePermission" }, { - "Id": 370, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 370, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "Id": 371, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 371, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "Id": 372, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 372, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "Id": 373, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 373, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "Id": 374, - "CommandName": "Get-PnPAzureADGroup", "Rank": 1, + "CommandName": "Get-PnPAzureADGroup", + "Id": 374, "Command": "Get-PnPAzureADGroup" }, { - "Id": 375, - "CommandName": "Get-PnPAzureADGroup", "Rank": 2, + "CommandName": "Get-PnPAzureADGroup", + "Id": 375, "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "Id": 376, - "CommandName": "Get-PnPAzureADGroup", "Rank": 3, + "CommandName": "Get-PnPAzureADGroup", + "Id": 376, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "Id": 377, - "CommandName": "Get-PnPAzureADGroup", "Rank": 4, + "CommandName": "Get-PnPAzureADGroup", + "Id": 377, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "Id": 378, - "CommandName": "Get-PnPAzureADGroup", "Rank": 5, + "CommandName": "Get-PnPAzureADGroup", + "Id": 378, "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "Id": 379, - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 379, "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "Id": 380, - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 380, "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "Id": 381, - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 381, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "Id": 382, - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 382, "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "Id": 383, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 383, "Command": "Get-PnPAzureADServicePrincipal" }, { - "Id": 384, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 384, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "Id": 385, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 385, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "Id": 386, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 386, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "Id": 387, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 387, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 388, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 388, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 389, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 389, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Id": 390, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 390, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 391, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 391, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "Id": 392, - "CommandName": "Get-PnPAzureADUser", "Rank": 1, + "CommandName": "Get-PnPAzureADUser", + "Id": 392, "Command": "Get-PnPAzureADUser" }, { - "Id": 393, - "CommandName": "Get-PnPAzureADUser", "Rank": 2, + "CommandName": "Get-PnPAzureADUser", + "Id": 393, "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "Id": 394, - "CommandName": "Get-PnPAzureADUser", "Rank": 3, + "CommandName": "Get-PnPAzureADUser", + "Id": 394, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Id": 395, - "CommandName": "Get-PnPAzureADUser", "Rank": 4, + "CommandName": "Get-PnPAzureADUser", + "Id": 395, "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "Id": 396, - "CommandName": "Get-PnPAzureADUser", "Rank": 5, + "CommandName": "Get-PnPAzureADUser", + "Id": 396, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "Id": 397, - "CommandName": "Get-PnPAzureADUser", "Rank": 6, + "CommandName": "Get-PnPAzureADUser", + "Id": 397, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "Id": 398, - "CommandName": "Get-PnPAzureADUser", "Rank": 7, + "CommandName": "Get-PnPAzureADUser", + "Id": 398, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "Id": 399, - "CommandName": "Get-PnPAzureADUser", "Rank": 8, + "CommandName": "Get-PnPAzureADUser", + "Id": 399, "Command": "Get-PnPAzureADUser -Delta" }, { - "Id": 400, - "CommandName": "Get-PnPAzureADUser", "Rank": 9, + "CommandName": "Get-PnPAzureADUser", + "Id": 400, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "Id": 401, - "CommandName": "Get-PnPAzureADUser", "Rank": 10, + "CommandName": "Get-PnPAzureADUser", + "Id": 401, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "Id": 402, - "CommandName": "Get-PnPAzureCertificate", "Rank": 1, + "CommandName": "Get-PnPAzureCertificate", + "Id": 402, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "Id": 403, - "CommandName": "Get-PnPAzureCertificate", "Rank": 2, + "CommandName": "Get-PnPAzureCertificate", + "Id": 403, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Id": 404, - "CommandName": "Get-PnPAzureCertificate", "Rank": 3, + "CommandName": "Get-PnPAzureCertificate", + "Id": 404, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "Id": 405, - "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Get-PnPBrowserIdleSignout", + "Id": 405, "Command": "Get-PnPBrowserIdleSignout" }, { - "Id": 406, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 406, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "Id": 407, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 407, "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Id": 408, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 408, "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 409, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 409, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "Id": 410, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 410, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "Id": 411, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 411, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 412, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 412, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "Id": 413, - "CommandName": "Get-PnPChangeLog", "Rank": 1, + "CommandName": "Get-PnPChangeLog", + "Id": 413, "Command": "Get-PnPChangeLog" }, { - "Id": 414, - "CommandName": "Get-PnPChangeLog", "Rank": 2, + "CommandName": "Get-PnPChangeLog", + "Id": 414, "Command": "Get-PnPChangeLog -Nightly" }, { - "Id": 415, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 415, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "Id": 416, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 416, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "Id": 417, - "CommandName": "Get-PnPContentType", "Rank": 1, + "CommandName": "Get-PnPContentType", + "Id": 417, "Command": "Get-PnPContentType" }, { - "Id": 418, - "CommandName": "Get-PnPContentType", "Rank": 2, + "CommandName": "Get-PnPContentType", + "Id": 418, "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "Id": 419, - "CommandName": "Get-PnPContentType", "Rank": 3, + "CommandName": "Get-PnPContentType", + "Id": 419, "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "Id": 420, - "CommandName": "Get-PnPContentType", "Rank": 4, + "CommandName": "Get-PnPContentType", + "Id": 420, "Command": "Get-PnPContentType -List \"Documents\"" }, { - "Id": 421, - "CommandName": "Get-PnPContentType", "Rank": 5, + "CommandName": "Get-PnPContentType", + "Id": 421, "Command": "Get-PnPContentType -Includes \"SchemaXml\"" }, { - "Id": 422, - "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, + "CommandName": "Get-PnPContentTypePublishingStatus", + "Id": 422, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "Id": 423, - "CommandName": "Get-PnPCustomAction", "Rank": 1, + "CommandName": "Get-PnPCustomAction", + "Id": 423, "Command": "Get-PnPCustomAction" }, { - "Id": 424, - "CommandName": "Get-PnPCustomAction", "Rank": 2, + "CommandName": "Get-PnPCustomAction", + "Id": 424, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 425, - "CommandName": "Get-PnPCustomAction", "Rank": 3, + "CommandName": "Get-PnPCustomAction", + "Id": 425, "Command": "Get-PnPCustomAction -Scope web" }, { - "Id": 426, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 426, "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "Id": 427, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 427, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 428, - "CommandName": "Get-PnPDeletedTeam", "Rank": 1, + "CommandName": "Get-PnPDeletedTeam", + "Id": 428, "Command": "Get-PnPDeletedTeam" }, { - "Id": 429, - "CommandName": "Get-PnPDiagnostics", "Rank": 1, + "CommandName": "Get-PnPDiagnostics", + "Id": 429, "Command": "Get-PnPDiagnostics" }, { - "Id": 430, - "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Get-PnPDisableSpacesActivation", + "Id": 430, "Command": "Get-PnPDisableSpacesActivation" }, { - "Id": 431, - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 431, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "Id": 432, - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 432, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "Id": 433, - "CommandName": "Get-PnPEventReceiver", "Rank": 1, + "CommandName": "Get-PnPEventReceiver", + "Id": 433, "Command": "Get-PnPEventReceiver" }, { - "Id": 434, - "CommandName": "Get-PnPEventReceiver", "Rank": 2, + "CommandName": "Get-PnPEventReceiver", + "Id": 434, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 435, - "CommandName": "Get-PnPEventReceiver", "Rank": 3, + "CommandName": "Get-PnPEventReceiver", + "Id": 435, "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "Id": 436, - "CommandName": "Get-PnPEventReceiver", "Rank": 4, + "CommandName": "Get-PnPEventReceiver", + "Id": 436, "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "Id": 437, - "CommandName": "Get-PnPEventReceiver", "Rank": 5, + "CommandName": "Get-PnPEventReceiver", + "Id": 437, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 438, - "CommandName": "Get-PnPEventReceiver", "Rank": 6, + "CommandName": "Get-PnPEventReceiver", + "Id": 438, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "Id": 439, - "CommandName": "Get-PnPEventReceiver", "Rank": 7, + "CommandName": "Get-PnPEventReceiver", + "Id": 439, "Command": "Get-PnPEventReceiver -Scope Site" }, { - "Id": 440, - "CommandName": "Get-PnPEventReceiver", "Rank": 8, + "CommandName": "Get-PnPEventReceiver", + "Id": 440, "Command": "Get-PnPEventReceiver -Scope Web" }, { - "Id": 441, - "CommandName": "Get-PnPEventReceiver", "Rank": 9, + "CommandName": "Get-PnPEventReceiver", + "Id": 441, "Command": "Get-PnPEventReceiver -Scope All" }, { - "Id": 442, - "CommandName": "Get-PnPException", "Rank": 1, + "CommandName": "Get-PnPException", + "Id": 442, "Command": "Get-PnPException" }, { - "Id": 443, - "CommandName": "Get-PnPException", "Rank": 2, + "CommandName": "Get-PnPException", + "Id": 443, "Command": "Get-PnPException -All" }, { - "Id": 444, - "CommandName": "Get-PnPExternalUser", "Rank": 1, + "CommandName": "Get-PnPExternalUser", + "Id": 444, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "Id": 445, - "CommandName": "Get-PnPExternalUser", "Rank": 2, + "CommandName": "Get-PnPExternalUser", + "Id": 445, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "Id": 446, - "CommandName": "Get-PnPFeature", "Rank": 1, + "CommandName": "Get-PnPFeature", + "Id": 446, "Command": "Get-PnPFeature" }, { - "Id": 447, - "CommandName": "Get-PnPFeature", "Rank": 2, + "CommandName": "Get-PnPFeature", + "Id": 447, "Command": "Get-PnPFeature -Scope Site" }, { - "Id": 448, - "CommandName": "Get-PnPFeature", "Rank": 3, + "CommandName": "Get-PnPFeature", + "Id": 448, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 449, - "CommandName": "Get-PnPFeature", "Rank": 4, + "CommandName": "Get-PnPFeature", + "Id": 449, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "Id": 450, - "CommandName": "Get-PnPField", "Rank": 1, + "CommandName": "Get-PnPField", + "Id": 450, "Command": "Get-PnPField" }, { - "Id": 451, - "CommandName": "Get-PnPField", "Rank": 2, + "CommandName": "Get-PnPField", + "Id": 451, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Id": 452, - "CommandName": "Get-PnPField", "Rank": 3, + "CommandName": "Get-PnPField", + "Id": 452, "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "Id": 453, - "CommandName": "Get-PnPFile", "Rank": 1, + "CommandName": "Get-PnPFile", + "Id": 453, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "Id": 454, - "CommandName": "Get-PnPFile", "Rank": 2, + "CommandName": "Get-PnPFile", + "Id": 454, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "Id": 455, - "CommandName": "Get-PnPFile", "Rank": 3, + "CommandName": "Get-PnPFile", + "Id": 455, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "Id": 456, - "CommandName": "Get-PnPFile", "Rank": 4, + "CommandName": "Get-PnPFile", + "Id": 456, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "Id": 457, - "CommandName": "Get-PnPFile", "Rank": 5, + "CommandName": "Get-PnPFile", + "Id": 457, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "Id": 458, - "CommandName": "Get-PnPFile", "Rank": 6, + "CommandName": "Get-PnPFile", + "Id": 458, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "Id": 459, - "CommandName": "Get-PnPFile", "Rank": 7, + "CommandName": "Get-PnPFile", + "Id": 459, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "Id": 460, - "CommandName": "Get-PnPFileInFolder", "Rank": 1, + "CommandName": "Get-PnPFileInFolder", + "Id": 460, "Command": "Get-PnPFileInFolder" }, { - "Id": 461, - "CommandName": "Get-PnPFileInFolder", "Rank": 2, + "CommandName": "Get-PnPFileInFolder", + "Id": 461, "Command": "Get-PnPFileInFolder -Recurse" }, { - "Id": 462, - "CommandName": "Get-PnPFileInFolder", "Rank": 3, + "CommandName": "Get-PnPFileInFolder", + "Id": 462, "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"" }, { - "Id": 463, - "CommandName": "Get-PnPFileInFolder", "Rank": 4, + "CommandName": "Get-PnPFileInFolder", + "Id": 463, "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Id": 464, - "CommandName": "Get-PnPFileInFolder", "Rank": 5, + "CommandName": "Get-PnPFileInFolder", + "Id": 464, "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { - "Id": 465, - "CommandName": "Get-PnPFileSharingLink", "Rank": 1, + "CommandName": "Get-PnPFileSharingLink", + "Id": 465, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 466, - "CommandName": "Get-PnPFileVersion", "Rank": 1, + "CommandName": "Get-PnPFileVersion", + "Id": 466, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "Id": 467, - "CommandName": "Get-PnPFileVersion", "Rank": 2, + "CommandName": "Get-PnPFileVersion", + "Id": 467, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "Id": 468, - "CommandName": "Get-PnPFlow", "Rank": 1, + "CommandName": "Get-PnPFlow", + "Id": 468, "Command": "Get-PnPFlow -AsAdmin" }, { - "Id": 469, - "CommandName": "Get-PnPFlow", "Rank": 2, + "CommandName": "Get-PnPFlow", + "Id": 469, "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "Id": 470, - "CommandName": "Get-PnPFlow", "Rank": 3, + "CommandName": "Get-PnPFlow", + "Id": 470, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "Id": 471, - "CommandName": "Get-PnPFlowOwner", "Rank": 1, + "CommandName": "Get-PnPFlowOwner", + "Id": 471, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "Id": 472, - "CommandName": "Get-PnPFolder", "Rank": 1, + "CommandName": "Get-PnPFolder", + "Id": 472, "Command": "Get-PnPFolder" }, { - "Id": 473, - "CommandName": "Get-PnPFolder", "Rank": 2, + "CommandName": "Get-PnPFolder", + "Id": 473, "Command": "Get-PnPFolder -CurrentWebRootFolder" }, { - "Id": 474, - "CommandName": "Get-PnPFolder", "Rank": 3, + "CommandName": "Get-PnPFolder", + "Id": 474, "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "Id": 475, - "CommandName": "Get-PnPFolder", "Rank": 4, + "CommandName": "Get-PnPFolder", + "Id": 475, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "Id": 476, - "CommandName": "Get-PnPFolder", "Rank": 5, + "CommandName": "Get-PnPFolder", + "Id": 476, "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"" }, { - "Id": 477, - "CommandName": "Get-PnPFolder", "Rank": 6, + "CommandName": "Get-PnPFolder", + "Id": 477, "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "Id": 478, - "CommandName": "Get-PnPFolderInFolder", "Rank": 1, + "CommandName": "Get-PnPFolderInFolder", + "Id": 478, "Command": "Get-PnPFolderInFolder" }, { - "Id": 479, - "CommandName": "Get-PnPFolderInFolder", "Rank": 2, + "CommandName": "Get-PnPFolderInFolder", + "Id": 479, "Command": "Get-PnPFolderInFolder -Recurse" }, { - "Id": 480, - "CommandName": "Get-PnPFolderInFolder", "Rank": 3, + "CommandName": "Get-PnPFolderInFolder", + "Id": 480, "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"" }, { - "Id": 481, - "CommandName": "Get-PnPFolderInFolder", "Rank": 4, + "CommandName": "Get-PnPFolderInFolder", + "Id": 481, "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "Id": 482, - "CommandName": "Get-PnPFolderInFolder", "Rank": 5, + "CommandName": "Get-PnPFolderInFolder", + "Id": 482, "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "Id": 483, - "CommandName": "Get-PnPFolderInFolder", "Rank": 6, + "CommandName": "Get-PnPFolderInFolder", + "Id": 483, "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { - "Id": 484, - "CommandName": "Get-PnPFolderItem", "Rank": 1, + "CommandName": "Get-PnPFolderItem", + "Id": 484, "Command": "Get-PnPFolderItem" }, { - "Id": 485, - "CommandName": "Get-PnPFolderItem", "Rank": 2, + "CommandName": "Get-PnPFolderItem", + "Id": 485, "Command": "Get-PnPFolderItem -Recurse" }, { - "Id": 486, - "CommandName": "Get-PnPFolderItem", "Rank": 3, + "CommandName": "Get-PnPFolderItem", + "Id": 486, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "Id": 487, - "CommandName": "Get-PnPFolderItem", "Rank": 4, + "CommandName": "Get-PnPFolderItem", + "Id": 487, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Id": 488, - "CommandName": "Get-PnPFolderItem", "Rank": 5, + "CommandName": "Get-PnPFolderItem", + "Id": 488, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "Id": 489, - "CommandName": "Get-PnPFolderItem", "Rank": 6, + "CommandName": "Get-PnPFolderItem", + "Id": 489, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 490, - "CommandName": "Get-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Get-PnPFolderSharingLink", + "Id": 490, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 491, - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 491, "Command": "Get-PnPFolderStorageMetric" }, { - "Id": 492, - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2, + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 492, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "Id": 493, - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3, + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 493, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "Id": 494, - "CommandName": "Get-PnPFooter", "Rank": 1, + "CommandName": "Get-PnPFooter", + "Id": 494, "Command": "Get-PnPFooter" }, { - "Id": 495, - "CommandName": "Get-PnPGraphAccessToken", "Rank": 1, + "CommandName": "Get-PnPGraphAccessToken", + "Id": 495, "Command": "Get-PnPGraphAccessToken" }, { - "Id": 496, - "CommandName": "Get-PnPGraphAccessToken", "Rank": 2, + "CommandName": "Get-PnPGraphAccessToken", + "Id": 496, "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "Id": 497, - "CommandName": "Get-PnPGraphSubscription", "Rank": 1, + "CommandName": "Get-PnPGraphSubscription", + "Id": 497, "Command": "Get-PnPGraphSubscription" }, { - "Id": 498, - "CommandName": "Get-PnPGraphSubscription", "Rank": 2, + "CommandName": "Get-PnPGraphSubscription", + "Id": 498, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Id": 499, - "CommandName": "Get-PnPGroup", "Rank": 1, + "CommandName": "Get-PnPGroup", + "Id": 499, "Command": "Get-PnPGroup" }, { - "Id": 500, - "CommandName": "Get-PnPGroup", "Rank": 2, + "CommandName": "Get-PnPGroup", + "Id": 500, "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "Id": 501, - "CommandName": "Get-PnPGroup", "Rank": 3, + "CommandName": "Get-PnPGroup", + "Id": 501, "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "Id": 502, - "CommandName": "Get-PnPGroupMember", "Rank": 1, + "CommandName": "Get-PnPGroupMember", + "Id": 502, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "Id": 503, - "CommandName": "Get-PnPGroupMember", "Rank": 2, + "CommandName": "Get-PnPGroupMember", + "Id": 503, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "Id": 504, - "CommandName": "Get-PnPGroupPermissions", "Rank": 1, + "CommandName": "Get-PnPGroupPermissions", + "Id": 504, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "Id": 505, - "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Get-PnPHideDefaultThemes", + "Id": 505, "Command": "Get-PnPHideDefaultThemes" }, { - "Id": 506, - "CommandName": "Get-PnPHomePage", "Rank": 1, + "CommandName": "Get-PnPHomePage", + "Id": 506, "Command": "Get-PnPHomePage" }, { - "Id": 507, - "CommandName": "Get-PnPHomeSite", "Rank": 1, + "CommandName": "Get-PnPHomeSite", + "Id": 507, "Command": "Get-PnPHomeSite" }, { - "Id": 508, - "CommandName": "Get-PnPHomeSite", "Rank": 2, + "CommandName": "Get-PnPHomeSite", + "Id": 508, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "Id": 509, - "CommandName": "Get-PnPHomeSite", "Rank": 3, + "CommandName": "Get-PnPHomeSite", + "Id": 509, "Command": "Get-PnPHomeSite -Detailed" }, { - "Id": 510, - "CommandName": "Get-PnPHubSite", "Rank": 1, + "CommandName": "Get-PnPHubSite", + "Id": 510, "Command": "Get-PnPHubSite" }, { - "Id": 511, - "CommandName": "Get-PnPHubSite", "Rank": 2, + "CommandName": "Get-PnPHubSite", + "Id": 511, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Id": 512, - "CommandName": "Get-PnPHubSite", "Rank": 3, + "CommandName": "Get-PnPHubSite", + "Id": 512, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "Id": 513, - "CommandName": "Get-PnPHubSiteChild", "Rank": 1, + "CommandName": "Get-PnPHubSiteChild", + "Id": 513, "Command": "Get-PnPHubSiteChild" }, { - "Id": 514, - "CommandName": "Get-PnPHubSiteChild", "Rank": 2, + "CommandName": "Get-PnPHubSiteChild", + "Id": 514, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Id": 515, - "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Id": 515, "Command": "Get-PnPInPlaceRecordsManagement" }, { - "Id": 516, - "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1, + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Id": 516, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "Id": 517, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 517, "Command": "Get-PnPJavaScriptLink" }, { - "Id": 518, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 518, "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "Id": 519, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 519, "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "Id": 520, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 520, "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "Id": 521, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 521, "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "Id": 522, - "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Get-PnPKnowledgeHubSite", + "Id": 522, "Command": "Get-PnPKnowledgeHubSite" }, { - "Id": 523, - "CommandName": "Get-PnPLabel", "Rank": 1, + "CommandName": "Get-PnPLabel", + "Id": 523, "Command": "Get-PnPLabel" }, { - "Id": 524, - "CommandName": "Get-PnPLabel", "Rank": 2, + "CommandName": "Get-PnPLabel", + "Id": 524, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "Id": 525, - "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1, + "CommandName": "Get-PnPLargeListOperationStatus", + "Id": 525, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "Id": 526, - "CommandName": "Get-PnPList", "Rank": 1, + "CommandName": "Get-PnPList", + "Id": 526, "Command": "Get-PnPList" }, { - "Id": 527, - "CommandName": "Get-PnPList", "Rank": 2, + "CommandName": "Get-PnPList", + "Id": 527, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 528, - "CommandName": "Get-PnPList", "Rank": 3, + "CommandName": "Get-PnPList", + "Id": 528, "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "Id": 529, - "CommandName": "Get-PnPList", "Rank": 4, + "CommandName": "Get-PnPList", + "Id": 529, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "Id": 530, - "CommandName": "Get-PnPList", "Rank": 5, + "CommandName": "Get-PnPList", + "Id": 530, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "Id": 531, - "CommandName": "Get-PnPListDesign", "Rank": 1, + "CommandName": "Get-PnPListDesign", + "Id": 531, "Command": "Get-PnPListDesign" }, { - "Id": 532, - "CommandName": "Get-PnPListDesign", "Rank": 2, + "CommandName": "Get-PnPListDesign", + "Id": 532, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 533, - "CommandName": "Get-PnPListDesign", "Rank": 3, + "CommandName": "Get-PnPListDesign", + "Id": 533, "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "Id": 534, - "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Get-PnPListInformationRightsManagement", + "Id": 534, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "Id": 535, - "CommandName": "Get-PnPListItem", "Rank": 1, + "CommandName": "Get-PnPListItem", + "Id": 535, "Command": "Get-PnPListItem -List Tasks" }, { - "Id": 536, - "CommandName": "Get-PnPListItem", "Rank": 2, + "CommandName": "Get-PnPListItem", + "Id": 536, "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "Id": 537, - "CommandName": "Get-PnPListItem", "Rank": 3, + "CommandName": "Get-PnPListItem", + "Id": 537, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "Id": 538, - "CommandName": "Get-PnPListItem", "Rank": 4, + "CommandName": "Get-PnPListItem", + "Id": 538, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" }, { - "Id": 539, - "CommandName": "Get-PnPListItem", "Rank": 5, + "CommandName": "Get-PnPListItem", + "Id": 539, "Command": "Get-PnPListItem -List Tasks -Query \"\"" }, { - "Id": 540, - "CommandName": "Get-PnPListItem", "Rank": 6, + "CommandName": "Get-PnPListItem", + "Id": 540, "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "Id": 541, - "CommandName": "Get-PnPListItem", "Rank": 7, + "CommandName": "Get-PnPListItem", + "Id": 541, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "Id": 542, - "CommandName": "Get-PnPListItem", "Rank": 8, + "CommandName": "Get-PnPListItem", + "Id": 542, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "Id": 543, - "CommandName": "Get-PnPListItem", "Rank": 9, + "CommandName": "Get-PnPListItem", + "Id": 543, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "Id": 544, - "CommandName": "Get-PnPListItemAttachment", "Rank": 1, + "CommandName": "Get-PnPListItemAttachment", + "Id": 544, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "Id": 545, - "CommandName": "Get-PnPListItemAttachment", "Rank": 2, + "CommandName": "Get-PnPListItemAttachment", + "Id": 545, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "Id": 546, - "CommandName": "Get-PnPListItemComment", "Rank": 1, + "CommandName": "Get-PnPListItemComment", + "Id": 546, "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "Id": 547, - "CommandName": "Get-PnPListItemPermission", "Rank": 1, + "CommandName": "Get-PnPListItemPermission", + "Id": 547, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "Id": 548, - "CommandName": "Get-PnPListItemVersion", "Rank": 1, + "CommandName": "Get-PnPListItemVersion", + "Id": 548, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "Id": 549, - "CommandName": "Get-PnPListPermissions", "Rank": 1, + "CommandName": "Get-PnPListPermissions", + "Id": 549, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "Id": 550, - "CommandName": "Get-PnPListPermissions", "Rank": 2, + "CommandName": "Get-PnPListPermissions", + "Id": 550, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Id": 551, - "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Get-PnPListRecordDeclaration", + "Id": 551, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "Id": 552, - "CommandName": "Get-PnPMasterPage", "Rank": 1, + "CommandName": "Get-PnPMasterPage", + "Id": 552, "Command": "Get-PnPMasterPage" }, { - "Id": 553, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 553, "Command": "Get-PnPMessageCenterAnnouncement" }, { - "Id": 554, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 554, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "Id": 555, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 555, "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Id": 556, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 556, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "Id": 557, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 557, "Command": "Get-PnPMicrosoft365Group" }, { - "Id": 558, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 558, "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "Id": 559, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 559, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "Id": 560, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 560, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "Id": 561, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 561, "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "Id": 562, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 562, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "Id": 563, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 563, "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 564, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 564, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "Id": 565, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 565, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 566, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 566, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "Id": 567, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 567, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "Id": 568, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 568, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "Id": 569, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 569, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "Id": 570, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 570, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "Id": 571, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 571, "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "Id": 572, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 572, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "Id": 573, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 573, "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Id": 574, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 574, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "Id": 575, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 575, "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 576, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 576, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "Id": 577, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 577, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 578, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 578, "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 579, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 579, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "Id": 580, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 580, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 581, - "CommandName": "Get-PnPNavigationNode", "Rank": 1, + "CommandName": "Get-PnPNavigationNode", + "Id": 581, "Command": "Get-PnPNavigationNode" }, { - "Id": 582, - "CommandName": "Get-PnPNavigationNode", "Rank": 2, + "CommandName": "Get-PnPNavigationNode", + "Id": 582, "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "Id": 583, - "CommandName": "Get-PnPNavigationNode", "Rank": 3, + "CommandName": "Get-PnPNavigationNode", + "Id": 583, "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "Id": 584, - "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Get-PnPOrgAssetsLibrary", + "Id": 584, "Command": "Get-PnPOrgAssetsLibrary" }, { - "Id": 585, - "CommandName": "Get-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Get-PnPOrgNewsSite", + "Id": 585, "Command": "Get-PnPOrgNewsSite" }, { - "Id": 586, - "CommandName": "Get-PnPPage", "Rank": 1, + "CommandName": "Get-PnPPage", + "Id": 586, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "Id": 587, - "CommandName": "Get-PnPPage", "Rank": 2, + "CommandName": "Get-PnPPage", + "Id": 587, "Command": "Get-PnPPage \"MyPage\"" }, { - "Id": 588, - "CommandName": "Get-PnPPage", "Rank": 3, + "CommandName": "Get-PnPPage", + "Id": 588, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "Id": 589, - "CommandName": "Get-PnPPage", "Rank": 4, + "CommandName": "Get-PnPPage", + "Id": 589, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "Id": 590, - "CommandName": "Get-PnPPageComponent", "Rank": 1, + "CommandName": "Get-PnPPageComponent", + "Id": 590, "Command": "Get-PnPPageComponent -Page Home" }, { - "Id": 591, - "CommandName": "Get-PnPPageComponent", "Rank": 2, + "CommandName": "Get-PnPPageComponent", + "Id": 591, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 592, - "CommandName": "Get-PnPPageComponent", "Rank": 3, + "CommandName": "Get-PnPPageComponent", + "Id": 592, "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "Id": 593, - "CommandName": "Get-PnPPlannerBucket", "Rank": 1, + "CommandName": "Get-PnPPlannerBucket", + "Id": 593, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Id": 594, - "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Get-PnPPlannerConfiguration", + "Id": 594, "Command": "Get-PnPPlannerConfiguration" }, { - "Id": 595, - "CommandName": "Get-PnPPlannerPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerPlan", + "Id": 595, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "Id": 596, - "CommandName": "Get-PnPPlannerPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerPlan", + "Id": 596, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "Id": 597, - "CommandName": "Get-PnPPlannerPlan", "Rank": 3, + "CommandName": "Get-PnPPlannerPlan", + "Id": 597, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "Id": 598, - "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterMember", + "Id": 598, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Id": 599, - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 599, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "Id": 600, - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 600, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 601, - "CommandName": "Get-PnPPlannerTask", "Rank": 1, + "CommandName": "Get-PnPPlannerTask", + "Id": 601, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Id": 602, - "CommandName": "Get-PnPPlannerTask", "Rank": 2, + "CommandName": "Get-PnPPlannerTask", + "Id": 602, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Id": 603, - "CommandName": "Get-PnPPlannerTask", "Rank": 3, + "CommandName": "Get-PnPPlannerTask", + "Id": 603, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Id": 604, - "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Get-PnPPlannerUserPolicy", + "Id": 604, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 605, - "CommandName": "Get-PnPPowerPlatformConnector", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformConnector", + "Id": 605, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Id": 606, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 606, "Command": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 607, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 607, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "Id": 608, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 608, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "Id": 609, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Id": 609, "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "Id": 610, - "CommandName": "Get-PnPPropertyBag", "Rank": 1, + "CommandName": "Get-PnPPropertyBag", + "Id": 610, "Command": "Get-PnPPropertyBag" }, { - "Id": 611, - "CommandName": "Get-PnPPropertyBag", "Rank": 2, + "CommandName": "Get-PnPPropertyBag", + "Id": 611, "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "Id": 612, - "CommandName": "Get-PnPPropertyBag", "Rank": 3, + "CommandName": "Get-PnPPropertyBag", + "Id": 612, "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "Id": 613, - "CommandName": "Get-PnPPropertyBag", "Rank": 4, + "CommandName": "Get-PnPPropertyBag", + "Id": 613, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "Id": 614, - "CommandName": "Get-PnPPropertyBag", "Rank": 5, + "CommandName": "Get-PnPPropertyBag", + "Id": 614, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "Id": 615, - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 615, "Command": "Get-PnPPublishingImageRendition" }, { - "Id": 616, - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2, + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 616, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "Id": 617, - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3, + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 617, "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "Id": 618, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 618, "Command": "Get-PnPRecycleBinItem" }, { - "Id": 619, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 2, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 619, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "Id": 620, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 3, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 620, "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "Id": 621, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 4, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 621, "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "Id": 622, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 5, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 622, "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "Id": 623, - "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Get-PnPRequestAccessEmails", + "Id": 623, "Command": "Get-PnPRequestAccessEmails" }, { - "Id": 624, - "CommandName": "Get-PnPRetentionLabel", "Rank": 1, + "CommandName": "Get-PnPRetentionLabel", + "Id": 624, "Command": "Get-PnPRetentionLabel" }, { - "Id": 625, - "CommandName": "Get-PnPRetentionLabel", "Rank": 2, + "CommandName": "Get-PnPRetentionLabel", + "Id": 625, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { - "Id": 626, - "CommandName": "Get-PnPRoleDefinition", "Rank": 1, + "CommandName": "Get-PnPRoleDefinition", + "Id": 626, "Command": "Get-PnPRoleDefinition" }, { - "Id": 627, - "CommandName": "Get-PnPRoleDefinition", "Rank": 2, + "CommandName": "Get-PnPRoleDefinition", + "Id": 627, "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "Id": 628, - "CommandName": "Get-PnPRoleDefinition", "Rank": 3, + "CommandName": "Get-PnPRoleDefinition", + "Id": 628, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "Id": 629, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 629, "Command": "Get-PnPSearchConfiguration" }, { - "Id": 630, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 630, "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "Id": 631, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 631, "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "Id": 632, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 632, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 633, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 5, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 633, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "Id": 634, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 6, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 634, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "Id": 635, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 7, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 635, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "Id": 636, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 8, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 636, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "Id": 637, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 637, "Command": "Get-PnPSearchCrawlLog" }, { - "Id": 638, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 638, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "Id": 639, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 639, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "Id": 640, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 640, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "Id": 641, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 641, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "Id": 642, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 642, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "Id": 643, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 643, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "Id": 644, - "CommandName": "Get-PnPSearchSettings", "Rank": 1, + "CommandName": "Get-PnPSearchSettings", + "Id": 644, "Command": "Get-PnPSearchSettings" }, { - "Id": 645, - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 645, "Command": "Get-PnPServiceCurrentHealth" }, { - "Id": 646, - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 646, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "Id": 647, - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 647, "Command": "Get-PnPServiceHealthIssue" }, { - "Id": 648, - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 648, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "Id": 649, - "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, + "CommandName": "Get-PnPSharePointAddIn", + "Id": 649, "Command": "Get-PnPSharePointAddIn" }, { - "Id": 650, - "CommandName": "Get-PnPSharePointAddIn", "Rank": 2, + "CommandName": "Get-PnPSharePointAddIn", + "Id": 650, "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "Id": 651, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Id": 651, "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "Id": 652, - "CommandName": "Get-PnPSite", "Rank": 1, + "CommandName": "Get-PnPSite", + "Id": 652, "Command": "Get-PnPSite" }, { - "Id": 653, - "CommandName": "Get-PnPSite", "Rank": 2, + "CommandName": "Get-PnPSite", + "Id": 653, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "Id": 654, - "CommandName": "Get-PnPSiteClosure", "Rank": 1, + "CommandName": "Get-PnPSiteClosure", + "Id": 654, "Command": "Get-PnPSiteClosure" }, { - "Id": 655, - "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAdmin", + "Id": 655, "Command": "Get-PnPSiteCollectionAdmin" }, { - "Id": 656, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 656, "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 657, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 657, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "Id": 658, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 658, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "Id": 659, - "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionTermStore", + "Id": 659, "Command": "Get-PnPSiteCollectionTermStore" }, { - "Id": 660, - "CommandName": "Get-PnPSiteDesign", "Rank": 1, + "CommandName": "Get-PnPSiteDesign", + "Id": 660, "Command": "Get-PnPSiteDesign" }, { - "Id": 661, - "CommandName": "Get-PnPSiteDesign", "Rank": 2, + "CommandName": "Get-PnPSiteDesign", + "Id": 661, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 662, - "CommandName": "Get-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRights", + "Id": 662, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 663, - "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRun", + "Id": 663, "Command": "Get-PnPSiteDesignRun" }, { - "Id": 664, - "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, + "CommandName": "Get-PnPSiteDesignRun", + "Id": 664, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "Id": 665, - "CommandName": "Get-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Get-PnPSiteDesignTask", + "Id": 665, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Id": 666, - "CommandName": "Get-PnPSiteDesignTask", "Rank": 2, + "CommandName": "Get-PnPSiteDesignTask", + "Id": 666, "Command": "Get-PnPSiteDesignTask" }, { - "Id": 667, - "CommandName": "Get-PnPSiteDesignTask", "Rank": 3, + "CommandName": "Get-PnPSiteDesignTask", + "Id": 667, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Id": 668, - "CommandName": "Get-PnPSiteGroup", "Rank": 1, + "CommandName": "Get-PnPSiteGroup", + "Id": 668, "Command": "Get-PnPSiteGroup" }, { - "Id": 669, - "CommandName": "Get-PnPSiteGroup", "Rank": 2, + "CommandName": "Get-PnPSiteGroup", + "Id": 669, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Id": 670, - "CommandName": "Get-PnPSiteGroup", "Rank": 3, + "CommandName": "Get-PnPSiteGroup", + "Id": 670, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "Id": 671, - "CommandName": "Get-PnPSiteGroup", "Rank": 4, + "CommandName": "Get-PnPSiteGroup", + "Id": 671, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Id": 672, - "CommandName": "Get-PnPSitePolicy", "Rank": 1, + "CommandName": "Get-PnPSitePolicy", + "Id": 672, "Command": "Get-PnPSitePolicy" }, { - "Id": 673, - "CommandName": "Get-PnPSitePolicy", "Rank": 2, + "CommandName": "Get-PnPSitePolicy", + "Id": 673, "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "Id": 674, - "CommandName": "Get-PnPSitePolicy", "Rank": 3, + "CommandName": "Get-PnPSitePolicy", + "Id": 674, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Id": 675, - "CommandName": "Get-PnPSiteScript", "Rank": 1, + "CommandName": "Get-PnPSiteScript", + "Id": 675, "Command": "Get-PnPSiteScript" }, { - "Id": 676, - "CommandName": "Get-PnPSiteScript", "Rank": 2, + "CommandName": "Get-PnPSiteScript", + "Id": 676, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 677, - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 677, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "Id": 678, - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 678, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "Id": 679, - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 679, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "Id": 680, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 680, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "Id": 681, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 681, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "Id": 682, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 682, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "Id": 683, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 683, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "Id": 684, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 684, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "Id": 685, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 6, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 685, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "Id": 686, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 686, "Command": "Get-PnPSiteSearchQueryResults" }, { - "Id": 687, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 687, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "Id": 688, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 688, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "Id": 689, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 689, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "Id": 690, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 690, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "Id": 691, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 691, "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "Id": 692, - "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPSiteSensitivityLabel", + "Id": 692, "Command": "Get-PnPSiteSensitivityLabel" }, { - "Id": 693, - "CommandName": "Get-PnPSiteTemplate", "Rank": 1, + "CommandName": "Get-PnPSiteTemplate", + "Id": 693, "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "Id": 694, - "CommandName": "Get-PnPSiteTemplate", "Rank": 2, + "CommandName": "Get-PnPSiteTemplate", + "Id": 694, "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "Id": 695, - "CommandName": "Get-PnPSiteTemplate", "Rank": 3, + "CommandName": "Get-PnPSiteTemplate", + "Id": 695, "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "Id": 696, - "CommandName": "Get-PnPSiteTemplate", "Rank": 4, + "CommandName": "Get-PnPSiteTemplate", + "Id": 696, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "Id": 697, - "CommandName": "Get-PnPSiteTemplate", "Rank": 5, + "CommandName": "Get-PnPSiteTemplate", + "Id": 697, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "Id": 698, - "CommandName": "Get-PnPSiteTemplate", "Rank": 6, + "CommandName": "Get-PnPSiteTemplate", + "Id": 698, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "Id": 699, - "CommandName": "Get-PnPSiteTemplate", "Rank": 7, + "CommandName": "Get-PnPSiteTemplate", + "Id": 699, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "Id": 700, - "CommandName": "Get-PnPSiteTemplate", "Rank": 8, + "CommandName": "Get-PnPSiteTemplate", + "Id": 700, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "Id": 701, - "CommandName": "Get-PnPSiteTemplate", "Rank": 9, + "CommandName": "Get-PnPSiteTemplate", + "Id": 701, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "Id": 702, - "CommandName": "Get-PnPSiteTemplate", "Rank": 10, + "CommandName": "Get-PnPSiteTemplate", + "Id": 702, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "Id": 703, - "CommandName": "Get-PnPSiteTemplate", "Rank": 11, + "CommandName": "Get-PnPSiteTemplate", + "Id": 703, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "Id": 704, - "CommandName": "Get-PnPSiteTemplate", "Rank": 12, + "CommandName": "Get-PnPSiteTemplate", + "Id": 704, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "Id": 705, - "CommandName": "Get-PnPSiteTemplate", "Rank": 13, + "CommandName": "Get-PnPSiteTemplate", + "Id": 705, "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "Id": 706, - "CommandName": "Get-PnPSiteTemplate", "Rank": 14, + "CommandName": "Get-PnPSiteTemplate", + "Id": 706, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "Id": 707, - "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Get-PnPSiteUserInvitations", + "Id": 707, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Id": 708, - "CommandName": "Get-PnPSiteVersionPolicy", "Rank": 1, + "CommandName": "Get-PnPSiteVersionPolicy", + "Id": 708, "Command": "Get-PnPSiteVersionPolicy" }, { - "Id": 709, - "CommandName": "Get-PnPStorageEntity", "Rank": 1, + "CommandName": "Get-PnPStorageEntity", + "Id": 709, "Command": "Get-PnPStorageEntity" }, { - "Id": 710, - "CommandName": "Get-PnPStorageEntity", "Rank": 2, + "CommandName": "Get-PnPStorageEntity", + "Id": 710, "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "Id": 711, - "CommandName": "Get-PnPStorageEntity", "Rank": 3, + "CommandName": "Get-PnPStorageEntity", + "Id": 711, "Command": "Get-PnPStorageEntity -Scope Site" }, { - "Id": 712, - "CommandName": "Get-PnPStorageEntity", "Rank": 4, + "CommandName": "Get-PnPStorageEntity", + "Id": 712, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Id": 713, - "CommandName": "Get-PnPStoredCredential", "Rank": 1, + "CommandName": "Get-PnPStoredCredential", + "Id": 713, "Command": "Get-PnPStoredCredential -Name O365" }, { - "Id": 714, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Id": 714, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 715, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Id": 715, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 716, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Id": 716, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "Id": 717, - "CommandName": "Get-PnPSubWeb", "Rank": 1, + "CommandName": "Get-PnPSubWeb", + "Id": 717, "Command": "Get-PnPSubWeb" }, { - "Id": 718, - "CommandName": "Get-PnPSubWeb", "Rank": 2, + "CommandName": "Get-PnPSubWeb", + "Id": 718, "Command": "Get-PnPSubWeb -Recurse" }, { - "Id": 719, - "CommandName": "Get-PnPSubWeb", "Rank": 3, + "CommandName": "Get-PnPSubWeb", + "Id": 719, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "Id": 720, - "CommandName": "Get-PnPSubWeb", "Rank": 4, + "CommandName": "Get-PnPSubWeb", + "Id": 720, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "Id": 721, - "CommandName": "Get-PnPSubWeb", "Rank": 5, + "CommandName": "Get-PnPSubWeb", + "Id": 721, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "Id": 722, - "CommandName": "Get-PnPSyntexModel", "Rank": 1, + "CommandName": "Get-PnPSyntexModel", + "Id": 722, "Command": "Get-PnPSyntexModel" }, { - "Id": 723, - "CommandName": "Get-PnPSyntexModel", "Rank": 2, + "CommandName": "Get-PnPSyntexModel", + "Id": 723, "Command": "Get-PnPSyntexModel -Identity 1" }, { - "Id": 724, - "CommandName": "Get-PnPSyntexModel", "Rank": 3, + "CommandName": "Get-PnPSyntexModel", + "Id": 724, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "Id": 725, - "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, + "CommandName": "Get-PnPSyntexModelPublication", + "Id": 725, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "Id": 726, - "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Get-PnPTaxonomyItem", + "Id": 726, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "Id": 727, - "CommandName": "Get-PnPTeamsApp", "Rank": 1, + "CommandName": "Get-PnPTeamsApp", + "Id": 727, "Command": "Get-PnPTeamsApp" }, { - "Id": 728, - "CommandName": "Get-PnPTeamsApp", "Rank": 2, + "CommandName": "Get-PnPTeamsApp", + "Id": 728, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "Id": 729, - "CommandName": "Get-PnPTeamsApp", "Rank": 3, + "CommandName": "Get-PnPTeamsApp", + "Id": 729, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "Id": 730, - "CommandName": "Get-PnPTeamsChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsChannel", + "Id": 730, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "Id": 731, - "CommandName": "Get-PnPTeamsChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsChannel", + "Id": 731, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "Id": 732, - "CommandName": "Get-PnPTeamsChannel", "Rank": 3, + "CommandName": "Get-PnPTeamsChannel", + "Id": 732, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Id": 733, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 733, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "Id": 734, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 734, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Id": 735, - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 735, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "Id": 736, - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 736, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "Id": 737, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 737, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "Id": 738, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 738, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "Id": 739, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 739, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "Id": 740, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 740, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "Id": 741, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 741, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "Id": 742, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 742, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 743, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 743, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "Id": 744, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 744, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "Id": 745, - "CommandName": "Get-PnPTeamsTab", "Rank": 1, + "CommandName": "Get-PnPTeamsTab", + "Id": 745, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "Id": 746, - "CommandName": "Get-PnPTeamsTab", "Rank": 2, + "CommandName": "Get-PnPTeamsTab", + "Id": 746, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "Id": 747, - "CommandName": "Get-PnPTeamsTab", "Rank": 3, + "CommandName": "Get-PnPTeamsTab", + "Id": 747, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "Id": 748, - "CommandName": "Get-PnPTeamsTab", "Rank": 4, + "CommandName": "Get-PnPTeamsTab", + "Id": 748, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "Id": 749, - "CommandName": "Get-PnPTeamsTab", "Rank": 5, + "CommandName": "Get-PnPTeamsTab", + "Id": 749, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "Id": 750, - "CommandName": "Get-PnPTeamsTag", "Rank": 1, + "CommandName": "Get-PnPTeamsTag", + "Id": 750, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Id": 751, - "CommandName": "Get-PnPTeamsTag", "Rank": 2, + "CommandName": "Get-PnPTeamsTag", + "Id": 751, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Id": 752, - "CommandName": "Get-PnPTeamsTeam", "Rank": 1, + "CommandName": "Get-PnPTeamsTeam", + "Id": 752, "Command": "Get-PnPTeamsTeam" }, { - "Id": 753, - "CommandName": "Get-PnPTeamsTeam", "Rank": 2, + "CommandName": "Get-PnPTeamsTeam", + "Id": 753, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "Id": 754, - "CommandName": "Get-PnPTeamsTeam", "Rank": 3, + "CommandName": "Get-PnPTeamsTeam", + "Id": 754, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "Id": 755, - "CommandName": "Get-PnPTeamsTeam", "Rank": 4, + "CommandName": "Get-PnPTeamsTeam", + "Id": 755, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "Id": 756, - "CommandName": "Get-PnPTeamsTeam", "Rank": 5, + "CommandName": "Get-PnPTeamsTeam", + "Id": 756, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 757, - "CommandName": "Get-PnPTeamsUser", "Rank": 1, + "CommandName": "Get-PnPTeamsUser", + "Id": 757, "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "Id": 758, - "CommandName": "Get-PnPTeamsUser", "Rank": 2, + "CommandName": "Get-PnPTeamsUser", + "Id": 758, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "Id": 759, - "CommandName": "Get-PnPTeamsUser", "Rank": 3, + "CommandName": "Get-PnPTeamsUser", + "Id": 759, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "Id": 760, - "CommandName": "Get-PnPTeamsUser", "Rank": 4, + "CommandName": "Get-PnPTeamsUser", + "Id": 760, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "Id": 761, - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Id": 761, "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "Id": 762, - "CommandName": "Get-PnPTenant", "Rank": 1, + "CommandName": "Get-PnPTenant", + "Id": 762, "Command": "Get-PnPTenant" }, { - "Id": 763, - "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Id": 763, "Command": "Get-PnPTenantAppCatalogUrl" }, { - "Id": 764, - "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Get-PnPTenantCdnEnabled", + "Id": 764, "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "Id": 765, - "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Get-PnPTenantCdnOrigin", + "Id": 765, "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "Id": 766, - "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1, + "CommandName": "Get-PnPTenantCdnPolicies", + "Id": 766, "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "Id": 767, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 767, "Command": "Get-PnPTenantDeletedSite" }, { - "Id": 768, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 768, "Command": "Get-PnPTenantDeletedSite -Detailed" }, { - "Id": 769, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 769, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 770, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 770, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "Id": 771, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 5, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 771, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "Id": 772, - "CommandName": "Get-PnPTenantId", "Rank": 1, + "CommandName": "Get-PnPTenantId", + "Id": 772, "Command": "Get-PnPTenantId" }, { - "Id": 773, - "CommandName": "Get-PnPTenantId", "Rank": 2, + "CommandName": "Get-PnPTenantId", + "Id": 773, "Command": "Get-PnPTenantId contoso" }, { - "Id": 774, - "CommandName": "Get-PnPTenantId", "Rank": 3, + "CommandName": "Get-PnPTenantId", + "Id": 774, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "Id": 775, - "CommandName": "Get-PnPTenantId", "Rank": 4, + "CommandName": "Get-PnPTenantId", + "Id": 775, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "Id": 776, - "CommandName": "Get-PnPTenantInfo", "Rank": 1, + "CommandName": "Get-PnPTenantInfo", + "Id": 776, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "Id": 777, - "CommandName": "Get-PnPTenantInfo", "Rank": 2, + "CommandName": "Get-PnPTenantInfo", + "Id": 777, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "Id": 778, - "CommandName": "Get-PnPTenantInfo", "Rank": 3, + "CommandName": "Get-PnPTenantInfo", + "Id": 778, "Command": "Get-PnPTenantInfo" }, { - "Id": 779, - "CommandName": "Get-PnPTenantInfo", "Rank": 4, + "CommandName": "Get-PnPTenantInfo", + "Id": 779, "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "Id": 780, - "CommandName": "Get-PnPTenantInstance", "Rank": 1, + "CommandName": "Get-PnPTenantInstance", + "Id": 780, "Command": "Get-PnPTenantInstance" }, { - "Id": 781, - "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPTenantRecycleBinItem", + "Id": 781, "Command": "Get-PnPTenantRecycleBinItem" }, { - "Id": 782, - "CommandName": "Get-PnPTenantSequence", "Rank": 1, + "CommandName": "Get-PnPTenantSequence", + "Id": 782, "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "Id": 783, - "CommandName": "Get-PnPTenantSequence", "Rank": 2, + "CommandName": "Get-PnPTenantSequence", + "Id": 783, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "Id": 784, - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 784, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "Id": 785, - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2, + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 785, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "Id": 786, - "CommandName": "Get-PnPTenantSite", "Rank": 1, + "CommandName": "Get-PnPTenantSite", + "Id": 786, "Command": "Get-PnPTenantSite" }, { - "Id": 787, - "CommandName": "Get-PnPTenantSite", "Rank": 2, + "CommandName": "Get-PnPTenantSite", + "Id": 787, "Command": "Get-PnPTenantSite -Detailed" }, { - "Id": 788, - "CommandName": "Get-PnPTenantSite", "Rank": 3, + "CommandName": "Get-PnPTenantSite", + "Id": 788, "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "Id": 789, - "CommandName": "Get-PnPTenantSite", "Rank": 4, + "CommandName": "Get-PnPTenantSite", + "Id": 789, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "Id": 790, - "CommandName": "Get-PnPTenantSite", "Rank": 5, + "CommandName": "Get-PnPTenantSite", + "Id": 790, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "Id": 791, - "CommandName": "Get-PnPTenantSite", "Rank": 6, + "CommandName": "Get-PnPTenantSite", + "Id": 791, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "Id": 792, - "CommandName": "Get-PnPTenantSite", "Rank": 7, + "CommandName": "Get-PnPTenantSite", + "Id": 792, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "Id": 793, - "CommandName": "Get-PnPTenantSite", "Rank": 8, + "CommandName": "Get-PnPTenantSite", + "Id": 793, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "Id": 794, - "CommandName": "Get-PnPTenantSite", "Rank": 9, + "CommandName": "Get-PnPTenantSite", + "Id": 794, "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "Id": 795, - "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Id": 795, "Command": "Get-PnPTenantSyncClientRestriction" }, { - "Id": 796, - "CommandName": "Get-PnPTenantTemplate", "Rank": 1, + "CommandName": "Get-PnPTenantTemplate", + "Id": 796, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "Id": 797, - "CommandName": "Get-PnPTenantTemplate", "Rank": 2, + "CommandName": "Get-PnPTenantTemplate", + "Id": 797, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "Id": 798, - "CommandName": "Get-PnPTenantTemplate", "Rank": 3, + "CommandName": "Get-PnPTenantTemplate", + "Id": 798, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "Id": 799, - "CommandName": "Get-PnPTenantTheme", "Rank": 1, + "CommandName": "Get-PnPTenantTheme", + "Id": 799, "Command": "Get-PnPTenantTheme" }, { - "Id": 800, - "CommandName": "Get-PnPTenantTheme", "Rank": 2, + "CommandName": "Get-PnPTenantTheme", + "Id": 800, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Id": 801, - "CommandName": "Get-PnPTenantTheme", "Rank": 3, + "CommandName": "Get-PnPTenantTheme", + "Id": 801, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "Id": 802, - "CommandName": "Get-PnPTerm", "Rank": 1, + "CommandName": "Get-PnPTerm", + "Id": 802, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 803, - "CommandName": "Get-PnPTerm", "Rank": 2, + "CommandName": "Get-PnPTerm", + "Id": 803, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 804, - "CommandName": "Get-PnPTerm", "Rank": 3, + "CommandName": "Get-PnPTerm", + "Id": 804, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 805, - "CommandName": "Get-PnPTerm", "Rank": 4, + "CommandName": "Get-PnPTerm", + "Id": 805, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "Id": 806, - "CommandName": "Get-PnPTerm", "Rank": 5, + "CommandName": "Get-PnPTerm", + "Id": 806, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "Id": 807, - "CommandName": "Get-PnPTermGroup", "Rank": 1, + "CommandName": "Get-PnPTermGroup", + "Id": 807, "Command": "Get-PnPTermGroup" }, { - "Id": 808, - "CommandName": "Get-PnPTermGroup", "Rank": 2, + "CommandName": "Get-PnPTermGroup", + "Id": 808, "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "Id": 809, - "CommandName": "Get-PnPTermGroup", "Rank": 3, + "CommandName": "Get-PnPTermGroup", + "Id": 809, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "Id": 810, - "CommandName": "Get-PnPTermLabel", "Rank": 1, + "CommandName": "Get-PnPTermLabel", + "Id": 810, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "Id": 811, - "CommandName": "Get-PnPTermLabel", "Rank": 2, + "CommandName": "Get-PnPTermLabel", + "Id": 811, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "Id": 812, - "CommandName": "Get-PnPTermLabel", "Rank": 3, + "CommandName": "Get-PnPTermLabel", + "Id": 812, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 813, - "CommandName": "Get-PnPTermSet", "Rank": 1, + "CommandName": "Get-PnPTermSet", + "Id": 813, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "Id": 814, - "CommandName": "Get-PnPTermSet", "Rank": 2, + "CommandName": "Get-PnPTermSet", + "Id": 814, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 815, - "CommandName": "Get-PnPTermSet", "Rank": 3, + "CommandName": "Get-PnPTermSet", + "Id": 815, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "Id": 816, - "CommandName": "Get-PnPTheme", "Rank": 1, + "CommandName": "Get-PnPTheme", + "Id": 816, "Command": "Get-PnPTheme" }, { - "Id": 817, - "CommandName": "Get-PnPTheme", "Rank": 2, + "CommandName": "Get-PnPTheme", + "Id": 817, "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "Id": 818, - "CommandName": "Get-PnPTimeZoneId", "Rank": 1, + "CommandName": "Get-PnPTimeZoneId", + "Id": 818, "Command": "Get-PnPTimeZoneId" }, { - "Id": 819, - "CommandName": "Get-PnPTimeZoneId", "Rank": 2, + "CommandName": "Get-PnPTimeZoneId", + "Id": 819, "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "Id": 820, - "CommandName": "Get-PnPUnfurlLink", "Rank": 1, + "CommandName": "Get-PnPUnfurlLink", + "Id": 820, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "Id": 821, - "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1, + "CommandName": "Get-PnPUnifiedAuditLog", + "Id": 821, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "Id": 822, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 822, "Command": "Get-PnPUPABulkImportStatus" }, { - "Id": 823, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 823, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "Id": 824, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 824, "Command": "Get-PnPUPABulkImportStatus -JobId " }, { - "Id": 825, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 825, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" }, { - "Id": 826, - "CommandName": "Get-PnPUser", "Rank": 1, + "CommandName": "Get-PnPUser", + "Id": 826, "Command": "Get-PnPUser" }, { - "Id": 827, - "CommandName": "Get-PnPUser", "Rank": 2, + "CommandName": "Get-PnPUser", + "Id": 827, "Command": "Get-PnPUser -Identity 23" }, { - "Id": 828, - "CommandName": "Get-PnPUser", "Rank": 3, + "CommandName": "Get-PnPUser", + "Id": 828, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "Id": 829, - "CommandName": "Get-PnPUser", "Rank": 4, + "CommandName": "Get-PnPUser", + "Id": 829, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "Id": 830, - "CommandName": "Get-PnPUser", "Rank": 5, + "CommandName": "Get-PnPUser", + "Id": 830, "Command": "Get-PnPUser -WithRightsAssigned" }, { - "Id": 831, - "CommandName": "Get-PnPUser", "Rank": 6, + "CommandName": "Get-PnPUser", + "Id": 831, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "Id": 832, - "CommandName": "Get-PnPUser", "Rank": 7, + "CommandName": "Get-PnPUser", + "Id": 832, "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "Id": 833, - "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Get-PnPUserOneDriveQuota", + "Id": 833, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "Id": 834, - "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Get-PnPUserProfileProperty", + "Id": 834, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "Id": 835, - "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Get-PnPUserProfileProperty", + "Id": 835, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "Id": 836, - "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, + "CommandName": "Get-PnPUserProfileProperty", + "Id": 836, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "Id": 837, - "CommandName": "Get-PnPView", "Rank": 1, + "CommandName": "Get-PnPView", + "Id": 837, "Command": "Get-PnPView -List \"Demo List\"" }, { - "Id": 838, - "CommandName": "Get-PnPView", "Rank": 2, + "CommandName": "Get-PnPView", + "Id": 838, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "Id": 839, - "CommandName": "Get-PnPView", "Rank": 3, + "CommandName": "Get-PnPView", + "Id": 839, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "Id": 840, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 840, "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "Id": 841, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 841, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Id": 842, - "CommandName": "Get-PnPWeb", "Rank": 1, + "CommandName": "Get-PnPWeb", + "Id": 842, "Command": "Get-PnPWeb" }, { - "Id": 843, - "CommandName": "Get-PnPWebHeader", "Rank": 1, + "CommandName": "Get-PnPWebHeader", + "Id": 843, "Command": "Get-PnPWebHeader" }, { - "Id": 844, - "CommandName": "Get-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Get-PnPWebhookSubscription", + "Id": 844, "Command": "Get-PnPWebhookSubscription -List MyList" }, { - "Id": 845, - "CommandName": "Get-PnPWebPart", "Rank": 1, + "CommandName": "Get-PnPWebPart", + "Id": 845, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "Id": 846, - "CommandName": "Get-PnPWebPart", "Rank": 2, + "CommandName": "Get-PnPWebPart", + "Id": 846, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 847, - "CommandName": "Get-PnPWebPartProperty", "Rank": 1, + "CommandName": "Get-PnPWebPartProperty", + "Id": 847, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "Id": 848, - "CommandName": "Get-PnPWebPartProperty", "Rank": 2, + "CommandName": "Get-PnPWebPartProperty", + "Id": 848, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "Id": 849, - "CommandName": "Get-PnPWebPartXml", "Rank": 1, + "CommandName": "Get-PnPWebPartXml", + "Id": 849, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 850, - "CommandName": "Get-PnPWebTemplates", "Rank": 1, + "CommandName": "Get-PnPWebTemplates", + "Id": 850, "Command": "Get-PnPWebTemplates" }, { - "Id": 851, - "CommandName": "Get-PnPWebTemplates", "Rank": 2, + "CommandName": "Get-PnPWebTemplates", + "Id": 851, "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "Id": 852, - "CommandName": "Get-PnPWebTemplates", "Rank": 3, + "CommandName": "Get-PnPWebTemplates", + "Id": 852, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "Id": 853, - "CommandName": "Get-PnPWikiPageContent", "Rank": 1, + "CommandName": "Get-PnPWikiPageContent", + "Id": 853, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "Id": 854, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 854, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "Id": 855, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 855, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" }, { - "Id": 856, - "CommandName": "Grant-PnPHubSiteRights", "Rank": 1, + "CommandName": "Grant-PnPHubSiteRights", + "Id": 856, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 857, - "CommandName": "Grant-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Grant-PnPSiteDesignRights", + "Id": 857, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 858, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Id": 858, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Id": 859, - "CommandName": "Import-PnPTaxonomy", "Rank": 1, + "CommandName": "Import-PnPTaxonomy", + "Id": 859, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "Id": 860, - "CommandName": "Import-PnPTaxonomy", "Rank": 2, + "CommandName": "Import-PnPTaxonomy", + "Id": 860, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "Id": 861, - "CommandName": "Import-PnPTaxonomy", "Rank": 3, + "CommandName": "Import-PnPTaxonomy", + "Id": 861, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "Id": 862, - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1, + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 862, "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "Id": 863, - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2, + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 863, "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "Id": 864, - "CommandName": "Import-PnPTermSet", "Rank": 1, + "CommandName": "Import-PnPTermSet", + "Id": 864, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "Id": 865, - "CommandName": "Import-PnPTermSet", "Rank": 2, + "CommandName": "Import-PnPTermSet", + "Id": 865, "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "Id": 866, - "CommandName": "Import-PnPTermSet", "Rank": 3, + "CommandName": "Import-PnPTermSet", + "Id": 866, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { - "Id": 867, - "CommandName": "Install-PnPApp", "Rank": 1, + "CommandName": "Install-PnPApp", + "Id": 867, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 868, - "CommandName": "Install-PnPApp", "Rank": 2, + "CommandName": "Install-PnPApp", + "Id": 868, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 869, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 1, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 869, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "Id": 870, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 2, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 870, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "Id": 871, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 3, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 871, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "Id": 872, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 4, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 872, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "Id": 873, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 5, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 873, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "Id": 874, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 6, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 874, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "Id": 875, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 7, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 875, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"" }, { - "Id": 876, - "CommandName": "Invoke-PnPListDesign", "Rank": 1, + "CommandName": "Invoke-PnPListDesign", + "Id": 876, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 877, - "CommandName": "Invoke-PnPListDesign", "Rank": 2, + "CommandName": "Invoke-PnPListDesign", + "Id": 877, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Id": 878, - "CommandName": "Invoke-PnPQuery", "Rank": 1, + "CommandName": "Invoke-PnPQuery", + "Id": 878, "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "Id": 879, - "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, + "CommandName": "Invoke-PnPSiteDesign", + "Id": 879, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 880, - "CommandName": "Invoke-PnPSiteDesign", "Rank": 2, + "CommandName": "Invoke-PnPSiteDesign", + "Id": 880, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Id": 881, - "CommandName": "Invoke-PnPSiteScript", "Rank": 1, + "CommandName": "Invoke-PnPSiteScript", + "Id": 881, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "Id": 882, - "CommandName": "Invoke-PnPSiteSwap", "Rank": 1, + "CommandName": "Invoke-PnPSiteSwap", + "Id": 882, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Id": 883, - "CommandName": "Invoke-PnPSiteSwap", "Rank": 2, + "CommandName": "Invoke-PnPSiteSwap", + "Id": 883, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Id": 884, - "CommandName": "Invoke-PnPSiteSwap", "Rank": 3, + "CommandName": "Invoke-PnPSiteSwap", + "Id": 884, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { - "Id": 885, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 885, "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "Id": 886, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 886, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "Id": 887, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 887, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Id": 888, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 888, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "Id": 889, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 889, "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "Id": 890, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 890, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "Id": 891, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 891, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "Id": 892, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 892, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "Id": 893, - "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1, + "CommandName": "Invoke-PnPSPRestMethod", + "Id": 893, "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "Id": 894, - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 894, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "Id": 895, - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 895, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "Id": 896, - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3, + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 896, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Id": 897, - "CommandName": "Invoke-PnPWebAction", "Rank": 1, + "CommandName": "Invoke-PnPWebAction", + "Id": 897, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "Id": 898, - "CommandName": "Invoke-PnPWebAction", "Rank": 2, + "CommandName": "Invoke-PnPWebAction", + "Id": 898, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "Id": 899, - "CommandName": "Measure-PnPList", "Rank": 1, + "CommandName": "Measure-PnPList", + "Id": 899, "Command": "Measure-PnPList \"Documents\"" }, { - "Id": 900, - "CommandName": "Measure-PnPList", "Rank": 2, + "CommandName": "Measure-PnPList", + "Id": 900, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "Id": 901, - "CommandName": "Measure-PnPWeb", "Rank": 1, + "CommandName": "Measure-PnPWeb", + "Id": 901, "Command": "Measure-PnPWeb" }, { - "Id": 902, - "CommandName": "Measure-PnPWeb", "Rank": 2, + "CommandName": "Measure-PnPWeb", + "Id": 902, "Command": "Measure-PnPWeb $web -Recursive" }, { - "Id": 903, - "CommandName": "Move-PnPFile", "Rank": 1, + "CommandName": "Move-PnPFile", + "Id": 903, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "Id": 904, - "CommandName": "Move-PnPFile", "Rank": 2, + "CommandName": "Move-PnPFile", + "Id": 904, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "Id": 905, - "CommandName": "Move-PnPFile", "Rank": 3, + "CommandName": "Move-PnPFile", + "Id": 905, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Id": 906, - "CommandName": "Move-PnPFile", "Rank": 4, + "CommandName": "Move-PnPFile", + "Id": 906, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Id": 907, - "CommandName": "Move-PnPFolder", "Rank": 1, + "CommandName": "Move-PnPFolder", + "Id": 907, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "Id": 908, - "CommandName": "Move-PnPFolder", "Rank": 2, + "CommandName": "Move-PnPFolder", + "Id": 908, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "Id": 909, - "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1, + "CommandName": "Move-PnPListItemToRecycleBin", + "Id": 909, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "Id": 910, - "CommandName": "Move-PnPPageComponent", "Rank": 1, + "CommandName": "Move-PnPPageComponent", + "Id": 910, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "Id": 911, - "CommandName": "Move-PnPPageComponent", "Rank": 2, + "CommandName": "Move-PnPPageComponent", + "Id": 911, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "Id": 912, - "CommandName": "Move-PnPPageComponent", "Rank": 3, + "CommandName": "Move-PnPPageComponent", + "Id": 912, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "Id": 913, - "CommandName": "Move-PnPPageComponent", "Rank": 4, + "CommandName": "Move-PnPPageComponent", + "Id": 913, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "Id": 914, - "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Move-PnpRecycleBinItem", + "Id": 914, "Command": "Move-PnPRecycleBinItem" }, { - "Id": 915, - "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Move-PnpRecycleBinItem", + "Id": 915, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "Id": 916, - "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Move-PnpRecycleBinItem", + "Id": 916, "Command": "Move-PnPRecycleBinItem -Force" }, { - "Id": 917, - "CommandName": "Move-PnPTerm", "Rank": 1, + "CommandName": "Move-PnPTerm", + "Id": 917, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "Id": 918, - "CommandName": "Move-PnPTerm", "Rank": 2, + "CommandName": "Move-PnPTerm", + "Id": 918, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "Id": 919, - "CommandName": "Move-PnPTerm", "Rank": 3, + "CommandName": "Move-PnPTerm", + "Id": 919, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "Id": 920, - "CommandName": "Move-PnPTermSet", "Rank": 1, + "CommandName": "Move-PnPTermSet", + "Id": 920, "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "Id": 921, - "CommandName": "Move-PnPTermSet", "Rank": 2, + "CommandName": "Move-PnPTermSet", + "Id": 921, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "Id": 922, - "CommandName": "New-PnPAzureADGroup", "Rank": 1, + "CommandName": "New-PnPAzureADGroup", + "Id": 922, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Id": 923, - "CommandName": "New-PnPAzureADGroup", "Rank": 2, + "CommandName": "New-PnPAzureADGroup", + "Id": 923, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "Id": 924, - "CommandName": "New-PnPAzureADGroup", "Rank": 3, + "CommandName": "New-PnPAzureADGroup", + "Id": 924, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "Id": 925, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 925, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "Id": 926, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 926, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "Id": 927, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 927, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "Id": 928, - "CommandName": "New-PnPAzureCertificate", "Rank": 1, + "CommandName": "New-PnPAzureCertificate", + "Id": 928, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "Id": 929, - "CommandName": "New-PnPAzureCertificate", "Rank": 2, + "CommandName": "New-PnPAzureCertificate", + "Id": 929, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "Id": 930, - "CommandName": "New-PnPAzureCertificate", "Rank": 3, + "CommandName": "New-PnPAzureCertificate", + "Id": 930, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "Id": 931, - "CommandName": "New-PnPAzureCertificate", "Rank": 4, + "CommandName": "New-PnPAzureCertificate", + "Id": 931, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null" }, { - "Id": 932, - "CommandName": "New-PnPGraphSubscription", "Rank": 1, + "CommandName": "New-PnPGraphSubscription", + "Id": 932, "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Id": 933, - "CommandName": "New-PnPGraphSubscription", "Rank": 2, + "CommandName": "New-PnPGraphSubscription", + "Id": 933, "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Id": 934, - "CommandName": "New-PnPGroup", "Rank": 1, + "CommandName": "New-PnPGroup", + "Id": 934, "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "Id": 935, - "CommandName": "New-PnPList", "Rank": 1, + "CommandName": "New-PnPList", + "Id": 935, "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "Id": 936, - "CommandName": "New-PnPList", "Rank": 2, + "CommandName": "New-PnPList", + "Id": 936, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "Id": 937, - "CommandName": "New-PnPList", "Rank": 3, + "CommandName": "New-PnPList", + "Id": 937, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "Id": 938, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 938, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Id": 939, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 939, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "Id": 940, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 940, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "Id": 941, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 941, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "Id": 942, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 942, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Id": 943, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 943, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 944, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 7, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 944, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "Id": 945, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 945, "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "Id": 946, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 946, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "Id": 947, - "CommandName": "New-PnPPersonalSite", "Rank": 1, + "CommandName": "New-PnPPersonalSite", + "Id": 947, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "Id": 948, - "CommandName": "New-PnPPlannerPlan", "Rank": 1, + "CommandName": "New-PnPPlannerPlan", + "Id": 948, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "Id": 949, - "CommandName": "New-PnPSdnProvider", "Rank": 1, + "CommandName": "New-PnPSdnProvider", + "Id": 949, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "Id": 950, - "CommandName": "New-PnPSite", "Rank": 1, + "CommandName": "New-PnPSite", + "Id": 950, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Id": 951, - "CommandName": "New-PnPSite", "Rank": 2, + "CommandName": "New-PnPSite", + "Id": 951, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "Id": 952, - "CommandName": "New-PnPSite", "Rank": 3, + "CommandName": "New-PnPSite", + "Id": 952, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Id": 953, - "CommandName": "New-PnPSite", "Rank": 4, + "CommandName": "New-PnPSite", + "Id": 953, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Id": 954, - "CommandName": "New-PnPSite", "Rank": 5, + "CommandName": "New-PnPSite", + "Id": 954, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Id": 955, - "CommandName": "New-PnPSite", "Rank": 6, + "CommandName": "New-PnPSite", + "Id": 955, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Id": 956, - "CommandName": "New-PnPSite", "Rank": 7, + "CommandName": "New-PnPSite", + "Id": 956, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "Id": 957, - "CommandName": "New-PnPSite", "Rank": 8, + "CommandName": "New-PnPSite", + "Id": 957, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "Id": 958, - "CommandName": "New-PnPSite", "Rank": 9, + "CommandName": "New-PnPSite", + "Id": 958, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "Id": 959, - "CommandName": "New-PnPSite", "Rank": 10, + "CommandName": "New-PnPSite", + "Id": 959, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "Id": 960, - "CommandName": "New-PnPSite", "Rank": 11, + "CommandName": "New-PnPSite", + "Id": 960, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Id": 961, - "CommandName": "New-PnPSite", "Rank": 12, + "CommandName": "New-PnPSite", + "Id": 961, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Id": 962, - "CommandName": "New-PnPSite", "Rank": 13, + "CommandName": "New-PnPSite", + "Id": 962, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Id": 963, - "CommandName": "New-PnPSite", "Rank": 14, + "CommandName": "New-PnPSite", + "Id": 963, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Id": 964, - "CommandName": "New-PnPSite", "Rank": 15, + "CommandName": "New-PnPSite", + "Id": 964, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Id": 965, - "CommandName": "New-PnPSite", "Rank": 16, + "CommandName": "New-PnPSite", + "Id": 965, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "Id": 966, - "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "New-PnPSiteCollectionTermStore", + "Id": 966, "Command": "New-PnPSiteCollectionTermStore" }, { - "Id": 967, - "CommandName": "New-PnPSiteGroup", "Rank": 1, + "CommandName": "New-PnPSiteGroup", + "Id": 967, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "Id": 968, - "CommandName": "New-PnPSiteGroup", "Rank": 2, + "CommandName": "New-PnPSiteGroup", + "Id": 968, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "Id": 969, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 969, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "Id": 970, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 970, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "Id": 971, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 971, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "Id": 972, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 972, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "Id": 973, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 5, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 973, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "Id": 974, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 6, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 974, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 975, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 975, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "Id": 976, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 976, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "Id": 977, - "CommandName": "New-PnPTeamsApp", "Rank": 1, + "CommandName": "New-PnPTeamsApp", + "Id": 977, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "Id": 978, - "CommandName": "New-PnPTeamsTeam", "Rank": 1, + "CommandName": "New-PnPTeamsTeam", + "Id": 978, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "Id": 979, - "CommandName": "New-PnPTeamsTeam", "Rank": 2, + "CommandName": "New-PnPTeamsTeam", + "Id": 979, "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "Id": 980, - "CommandName": "New-PnPTeamsTeam", "Rank": 3, + "CommandName": "New-PnPTeamsTeam", + "Id": 980, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "Id": 981, - "CommandName": "New-PnPTeamsTeam", "Rank": 4, + "CommandName": "New-PnPTeamsTeam", + "Id": 981, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Id": 982, - "CommandName": "New-PnPTeamsTeam", "Rank": 5, + "CommandName": "New-PnPTeamsTeam", + "Id": 982, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "Id": 983, - "CommandName": "New-PnPTeamsTeam", "Rank": 6, + "CommandName": "New-PnPTeamsTeam", + "Id": 983, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\" -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 984, - "CommandName": "New-PnPTenantSite", "Rank": 1, + "CommandName": "New-PnPTenantSite", + "Id": 984, "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Id": 985, - "CommandName": "New-PnPTenantSite", "Rank": 2, + "CommandName": "New-PnPTenantSite", + "Id": 985, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Id": 986, - "CommandName": "New-PnPTerm", "Rank": 1, + "CommandName": "New-PnPTerm", + "Id": 986, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "Id": 987, - "CommandName": "New-PnPTerm", "Rank": 2, + "CommandName": "New-PnPTerm", + "Id": 987, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 988, - "CommandName": "New-PnPTermGroup", "Rank": 1, + "CommandName": "New-PnPTermGroup", + "Id": 988, "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "Id": 989, - "CommandName": "New-PnPTermLabel", "Rank": 1, + "CommandName": "New-PnPTermLabel", + "Id": 989, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "Id": 990, - "CommandName": "New-PnPTermSet", "Rank": 1, + "CommandName": "New-PnPTermSet", + "Id": 990, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { - "Id": 991, - "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, + "CommandName": "New-PnPUPABulkImportJob", + "Id": 991, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { - "Id": 992, - "CommandName": "New-PnPUPABulkImportJob", "Rank": 2, + "CommandName": "New-PnPUPABulkImportJob", + "Id": 992, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "Id": 993, - "CommandName": "New-PnPUser", "Rank": 1, + "CommandName": "New-PnPUser", + "Id": 993, "Command": "New-PnPUser -LoginName user@company.com" }, { - "Id": 994, - "CommandName": "New-PnPWeb", "Rank": 1, + "CommandName": "New-PnPWeb", + "Id": 994, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { - "Id": 995, - "CommandName": "Publish-PnPApp", "Rank": 1, + "CommandName": "Publish-PnPApp", + "Id": 995, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 996, - "CommandName": "Publish-PnPApp", "Rank": 2, + "CommandName": "Publish-PnPApp", + "Id": 996, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "Id": 997, - "CommandName": "Publish-PnPCompanyApp", "Rank": 1, + "CommandName": "Publish-PnPCompanyApp", + "Id": 997, "Command": "Publish-PnPCompanyApp -PortalUrl https://contoso.sharepoint.com/sites/portal -AppName \"Contoso Portal\" -CompanyName \"Contoso\" -CompanyWebSite \"https://www.contoso.com\" -ColoredIconPath ./coloricon.png -OutlineIconPath ./outlinedicon" }, { - "Id": 998, - "CommandName": "Publish-PnPContentType", "Rank": 1, + "CommandName": "Publish-PnPContentType", + "Id": 998, "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "Id": 999, - "CommandName": "Publish-PnPSyntexModel", "Rank": 1, + "CommandName": "Publish-PnPSyntexModel", + "Id": 999, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Id": 1000, - "CommandName": "Publish-PnPSyntexModel", "Rank": 2, + "CommandName": "Publish-PnPSyntexModel", + "Id": 1000, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Id": 1001, - "CommandName": "Read-PnPSiteTemplate", "Rank": 1, + "CommandName": "Read-PnPSiteTemplate", + "Id": 1001, "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "Id": 1002, - "CommandName": "Read-PnPSiteTemplate", "Rank": 2, + "CommandName": "Read-PnPSiteTemplate", + "Id": 1002, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "Id": 1003, - "CommandName": "Read-PnPSiteTemplate", "Rank": 3, + "CommandName": "Read-PnPSiteTemplate", + "Id": 1003, "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "Id": 1004, - "CommandName": "Read-PnPTenantTemplate", "Rank": 1, + "CommandName": "Read-PnPTenantTemplate", + "Id": 1004, "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "Id": 1005, - "CommandName": "Register-PnPAppCatalogSite", "Rank": 1, + "CommandName": "Register-PnPAppCatalogSite", + "Id": 1005, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "Id": 1006, - "CommandName": "Register-PnPAzureADApp", "Rank": 1, + "CommandName": "Register-PnPAzureADApp", + "Id": 1006, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Id": 1007, - "CommandName": "Register-PnPAzureADApp", "Rank": 2, + "CommandName": "Register-PnPAzureADApp", + "Id": 1007, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\")" }, { - "Id": 1008, - "CommandName": "Register-PnPAzureADApp", "Rank": 3, + "CommandName": "Register-PnPAzureADApp", + "Id": 1008, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Id": 1009, - "CommandName": "Register-PnPAzureADApp", "Rank": 4, + "CommandName": "Register-PnPAzureADApp", + "Id": 1009, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -OutPath c:\\ -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Id": 1010, - "CommandName": "Register-PnPAzureADApp", "Rank": 5, + "CommandName": "Register-PnPAzureADApp", + "Id": 1010, "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Id": 1011, - "CommandName": "Register-PnPAzureADApp", "Rank": 6, + "CommandName": "Register-PnPAzureADApp", + "Id": 1011, "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Id": 1012, - "CommandName": "Register-PnPAzureADApp", "Rank": 7, + "CommandName": "Register-PnPAzureADApp", + "Id": 1012, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png" }, { - "Id": 1013, - "CommandName": "Register-PnPHubSite", "Rank": 1, + "CommandName": "Register-PnPHubSite", + "Id": 1013, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Id": 1014, - "CommandName": "Register-PnPHubSite", "Rank": 2, + "CommandName": "Register-PnPHubSite", + "Id": 1014, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "Id": 1015, - "CommandName": "Register-PnPManagementShellAccess", "Rank": 1, + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1015, "Command": "Register-PnPManagementShellAccess" }, { - "Id": 1016, - "CommandName": "Register-PnPManagementShellAccess", "Rank": 2, + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1016, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "Id": 1017, - "CommandName": "Register-PnPManagementShellAccess", "Rank": 3, + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1017, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "Id": 1018, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1018, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "Id": 1019, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1019, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "Id": 1020, - "CommandName": "Remove-PnPAlert", "Rank": 1, + "CommandName": "Remove-PnPAlert", + "Id": 1020, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "Id": 1021, - "CommandName": "Remove-PnPAlert", "Rank": 2, + "CommandName": "Remove-PnPAlert", + "Id": 1021, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 1022, - "CommandName": "Remove-PnPApp", "Rank": 1, + "CommandName": "Remove-PnPApp", + "Id": 1022, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1023, - "CommandName": "Remove-PnPApp", "Rank": 2, + "CommandName": "Remove-PnPApp", + "Id": 1023, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1024, - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1024, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1025, - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1025, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Id": 1026, - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1026, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "Id": 1027, - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1027, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Id": 1028, - "CommandName": "Remove-PnPAzureADApp", "Rank": 1, + "CommandName": "Remove-PnPAzureADApp", + "Id": 1028, "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "Id": 1029, - "CommandName": "Remove-PnPAzureADApp", "Rank": 2, + "CommandName": "Remove-PnPAzureADApp", + "Id": 1029, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 1030, - "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1030, "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "Id": 1031, - "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1031, "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "Id": 1032, - "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupMember", + "Id": 1032, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1033, - "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupOwner", + "Id": 1033, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1034, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1034, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "Id": 1035, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1035, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "Id": 1036, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1036, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 1037, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1037, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Id": 1038, - "CommandName": "Remove-PnPContentType", "Rank": 1, + "CommandName": "Remove-PnPContentType", + "Id": 1038, "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "Id": 1039, - "CommandName": "Remove-PnPContentType", "Rank": 2, + "CommandName": "Remove-PnPContentType", + "Id": 1039, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "Id": 1040, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1040, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Id": 1041, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1041, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Id": 1042, - "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromList", + "Id": 1042, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "Id": 1043, - "CommandName": "Remove-PnPCustomAction", "Rank": 1, + "CommandName": "Remove-PnPCustomAction", + "Id": 1043, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1044, - "CommandName": "Remove-PnPCustomAction", "Rank": 2, + "CommandName": "Remove-PnPCustomAction", + "Id": 1044, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Id": 1045, - "CommandName": "Remove-PnPCustomAction", "Rank": 3, + "CommandName": "Remove-PnPCustomAction", + "Id": 1045, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "Id": 1046, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Id": 1046, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 1047, - "CommandName": "Remove-PnPEventReceiver", "Rank": 1, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1047, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 1048, - "CommandName": "Remove-PnPEventReceiver", "Rank": 2, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1048, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 1049, - "CommandName": "Remove-PnPEventReceiver", "Rank": 3, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1049, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "Id": 1050, - "CommandName": "Remove-PnPEventReceiver", "Rank": 4, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1050, "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "Id": 1051, - "CommandName": "Remove-PnPEventReceiver", "Rank": 5, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1051, "Command": "Remove-PnPEventReceiver" }, { - "Id": 1052, - "CommandName": "Remove-PnPEventReceiver", "Rank": 6, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1052, "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "Id": 1053, - "CommandName": "Remove-PnPEventReceiver", "Rank": 7, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1053, "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "Id": 1054, - "CommandName": "Remove-PnPEventReceiver", "Rank": 8, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1054, "Command": "Remove-PnPEventReceiver -Scope All" }, { - "Id": 1055, - "CommandName": "Remove-PnPField", "Rank": 1, + "CommandName": "Remove-PnPField", + "Id": 1055, "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "Id": 1056, - "CommandName": "Remove-PnPField", "Rank": 2, + "CommandName": "Remove-PnPField", + "Id": 1056, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Id": 1057, - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1, + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1057, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Id": 1058, - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2, + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1058, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "Id": 1059, - "CommandName": "Remove-PnPFile", "Rank": 1, + "CommandName": "Remove-PnPFile", + "Id": 1059, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "Id": 1060, - "CommandName": "Remove-PnPFile", "Rank": 2, + "CommandName": "Remove-PnPFile", + "Id": 1060, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "Id": 1061, - "CommandName": "Remove-PnPFile", "Rank": 3, + "CommandName": "Remove-PnPFile", + "Id": 1061, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "Id": 1062, - "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Id": 1062, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "Id": 1063, - "CommandName": "Remove-PnPFileSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1063, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 1064, - "CommandName": "Remove-PnPFileSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1064, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "Id": 1065, - "CommandName": "Remove-PnPFileVersion", "Rank": 1, + "CommandName": "Remove-PnPFileVersion", + "Id": 1065, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Id": 1066, - "CommandName": "Remove-PnPFileVersion", "Rank": 2, + "CommandName": "Remove-PnPFileVersion", + "Id": 1066, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Id": 1067, - "CommandName": "Remove-PnPFileVersion", "Rank": 3, + "CommandName": "Remove-PnPFileVersion", + "Id": 1067, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "Id": 1068, - "CommandName": "Remove-PnPFlowOwner", "Rank": 1, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1068, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "Id": 1069, - "CommandName": "Remove-PnPFlowOwner", "Rank": 2, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1069, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "Id": 1070, - "CommandName": "Remove-PnPFlowOwner", "Rank": 3, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1070, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "Id": 1071, - "CommandName": "Remove-PnPFlowOwner", "Rank": 4, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1071, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "Id": 1072, - "CommandName": "Remove-PnPFolder", "Rank": 1, + "CommandName": "Remove-PnPFolder", + "Id": 1072, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Id": 1073, - "CommandName": "Remove-PnPFolder", "Rank": 2, + "CommandName": "Remove-PnPFolder", + "Id": 1073, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "Id": 1074, - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1074, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 1075, - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1075, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "Id": 1076, - "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, + "CommandName": "Remove-PnPGraphSubscription", + "Id": 1076, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "Id": 1077, - "CommandName": "Remove-PnPGroup", "Rank": 1, + "CommandName": "Remove-PnPGroup", + "Id": 1077, "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "Id": 1078, - "CommandName": "Remove-PnPGroupMember", "Rank": 1, + "CommandName": "Remove-PnPGroupMember", + "Id": 1078, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Id": 1079, - "CommandName": "Remove-PnPHomeSite", "Rank": 1, + "CommandName": "Remove-PnPHomeSite", + "Id": 1079, "Command": "Remove-PnPHomeSite" }, { - "Id": 1080, - "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubSiteAssociation", + "Id": 1080, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Id": 1081, - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1081, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "Id": 1082, - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2, + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1082, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "Id": 1083, - "CommandName": "Remove-PnPIndexedProperty", "Rank": 1, + "CommandName": "Remove-PnPIndexedProperty", + "Id": 1083, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "Id": 1084, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1084, "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "Id": 1085, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1085, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "Id": 1086, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1086, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "Id": 1087, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1087, "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "Id": 1088, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1088, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "Id": 1089, - "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Remove-PnPKnowledgeHubSite", + "Id": 1089, "Command": "Remove-PnPKnowledgeHubSite" }, { - "Id": 1090, - "CommandName": "Remove-PnPList", "Rank": 1, + "CommandName": "Remove-PnPList", + "Id": 1090, "Command": "Remove-PnPList -Identity Announcements" }, { - "Id": 1091, - "CommandName": "Remove-PnPList", "Rank": 2, + "CommandName": "Remove-PnPList", + "Id": 1091, "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "Id": 1092, - "CommandName": "Remove-PnPList", "Rank": 3, + "CommandName": "Remove-PnPList", + "Id": 1092, "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "Id": 1093, - "CommandName": "Remove-PnPList", "Rank": 4, + "CommandName": "Remove-PnPList", + "Id": 1093, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "Id": 1094, - "CommandName": "Remove-PnPListDesign", "Rank": 1, + "CommandName": "Remove-PnPListDesign", + "Id": 1094, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1095, - "CommandName": "Remove-PnPListItem", "Rank": 1, + "CommandName": "Remove-PnPListItem", + "Id": 1095, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "Id": 1096, - "CommandName": "Remove-PnPListItem", "Rank": 2, + "CommandName": "Remove-PnPListItem", + "Id": 1096, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "Id": 1097, - "CommandName": "Remove-PnPListItem", "Rank": 3, + "CommandName": "Remove-PnPListItem", + "Id": 1097, "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "Id": 1098, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1098, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "Id": 1099, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 2, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1099, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "Id": 1100, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 3, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1100, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "Id": 1101, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 4, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1101, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "Id": 1102, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 5, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1102, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "Id": 1103, - "CommandName": "Remove-PnPListItemVersion", "Rank": 1, + "CommandName": "Remove-PnPListItemVersion", + "Id": 1103, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Id": 1104, - "CommandName": "Remove-PnPListItemVersion", "Rank": 2, + "CommandName": "Remove-PnPListItemVersion", + "Id": 1104, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Id": 1105, - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1105, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "Id": 1106, - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1106, "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "Id": 1107, - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Id": 1107, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1108, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Id": 1108, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1109, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1109, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "Id": 1110, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1110, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "Id": 1111, - "CommandName": "Remove-PnPNavigationNode", "Rank": 1, + "CommandName": "Remove-PnPNavigationNode", + "Id": 1111, "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "Id": 1112, - "CommandName": "Remove-PnPNavigationNode", "Rank": 2, + "CommandName": "Remove-PnPNavigationNode", + "Id": 1112, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "Id": 1113, - "CommandName": "Remove-PnPNavigationNode", "Rank": 3, + "CommandName": "Remove-PnPNavigationNode", + "Id": 1113, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "Id": 1114, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1114, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "Id": 1115, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1115, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "Id": 1116, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1116, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "Id": 1117, - "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Remove-PnPOrgNewsSite", + "Id": 1117, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Id": 1118, - "CommandName": "Remove-PnPPage", "Rank": 1, + "CommandName": "Remove-PnPPage", + "Id": 1118, "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "Id": 1119, - "CommandName": "Remove-PnPPage", "Rank": 2, + "CommandName": "Remove-PnPPage", + "Id": 1119, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "Id": 1120, - "CommandName": "Remove-PnPPage", "Rank": 3, + "CommandName": "Remove-PnPPage", + "Id": 1120, "Command": "Remove-PnPPage $page" }, { - "Id": 1121, - "CommandName": "Remove-PnPPage", "Rank": 4, + "CommandName": "Remove-PnPPage", + "Id": 1121, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "Id": 1122, - "CommandName": "Remove-PnPPageComponent", "Rank": 1, + "CommandName": "Remove-PnPPageComponent", + "Id": 1122, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 1123, - "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, + "CommandName": "Remove-PnPPlannerBucket", + "Id": 1123, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "Id": 1124, - "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, + "CommandName": "Remove-PnPPlannerPlan", + "Id": 1124, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "Id": 1125, - "CommandName": "Remove-PnPPlannerRoster", "Rank": 1, + "CommandName": "Remove-PnPPlannerRoster", + "Id": 1125, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Id": 1126, - "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Remove-PnPPlannerRosterMember", + "Id": 1126, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 1127, - "CommandName": "Remove-PnPPlannerTask", "Rank": 1, + "CommandName": "Remove-PnPPlannerTask", + "Id": 1127, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "Id": 1128, - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1128, "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "Id": 1129, - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1129, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "Id": 1130, - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1130, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "Id": 1131, - "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Remove-PnPPublishingImageRendition", + "Id": 1131, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Id": 1132, - "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, + "CommandName": "Remove-PnPRoleDefinition", + "Id": 1132, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "Id": 1133, - "CommandName": "Remove-PnPSdnProvider", "Rank": 1, + "CommandName": "Remove-PnPSdnProvider", + "Id": 1133, "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "Id": 1134, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1134, "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "Id": 1135, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1135, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Id": 1136, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1136, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Id": 1137, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1137, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 1138, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1138, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1139, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1139, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 1140, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Id": 1140, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Id": 1141, - "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Id": 1141, "Command": "Remove-PnPSiteCollectionTermStore" }, { - "Id": 1142, - "CommandName": "Remove-PnPSiteDesign", "Rank": 1, + "CommandName": "Remove-PnPSiteDesign", + "Id": 1142, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1143, - "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Remove-PnPSiteDesignTask", + "Id": 1143, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1144, - "CommandName": "Remove-PnPSiteGroup", "Rank": 1, + "CommandName": "Remove-PnPSiteGroup", + "Id": 1144, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1145, - "CommandName": "Remove-PnPSiteGroup", "Rank": 2, + "CommandName": "Remove-PnPSiteGroup", + "Id": 1145, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "Id": 1146, - "CommandName": "Remove-PnPSiteScript", "Rank": 1, + "CommandName": "Remove-PnPSiteScript", + "Id": 1146, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1147, - "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Remove-PnPSiteUserInvitations", + "Id": 1147, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Id": 1148, - "CommandName": "Remove-PnPStorageEntity", "Rank": 1, + "CommandName": "Remove-PnPStorageEntity", + "Id": 1148, "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "Id": 1149, - "CommandName": "Remove-PnPStorageEntity", "Rank": 2, + "CommandName": "Remove-PnPStorageEntity", + "Id": 1149, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Id": 1150, - "CommandName": "Remove-PnPStoredCredential", "Rank": 1, + "CommandName": "Remove-PnPStoredCredential", + "Id": 1150, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "Id": 1151, - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1151, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "Id": 1152, - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2, + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1152, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "Id": 1153, - "CommandName": "Remove-PnPTeamsApp", "Rank": 1, + "CommandName": "Remove-PnPTeamsApp", + "Id": 1153, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "Id": 1154, - "CommandName": "Remove-PnPTeamsApp", "Rank": 2, + "CommandName": "Remove-PnPTeamsApp", + "Id": 1154, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "Id": 1155, - "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannel", + "Id": 1155, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "Id": 1156, - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1156, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "Id": 1157, - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1157, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 1158, - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1158, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "Id": 1159, - "CommandName": "Remove-PnPTeamsTab", "Rank": 1, + "CommandName": "Remove-PnPTeamsTab", + "Id": 1159, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "Id": 1160, - "CommandName": "Remove-PnPTeamsTab", "Rank": 2, + "CommandName": "Remove-PnPTeamsTab", + "Id": 1160, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "Id": 1161, - "CommandName": "Remove-PnPTeamsTab", "Rank": 3, + "CommandName": "Remove-PnPTeamsTab", + "Id": 1161, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "Id": 1162, - "CommandName": "Remove-PnPTeamsTag", "Rank": 1, + "CommandName": "Remove-PnPTeamsTag", + "Id": 1162, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Id": 1163, - "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1163, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Id": 1164, - "CommandName": "Remove-PnPTeamsTeam", "Rank": 2, + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1164, "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "Id": 1165, - "CommandName": "Remove-PnPTeamsUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsUser", + "Id": 1165, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "Id": 1166, - "CommandName": "Remove-PnPTeamsUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsUser", + "Id": 1166, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 1167, - "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Remove-PnPTenantCdnOrigin", + "Id": 1167, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Id": 1168, - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1168, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1169, - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1169, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Id": 1170, - "CommandName": "Remove-PnPTenantSite", "Rank": 1, + "CommandName": "Remove-PnPTenantSite", + "Id": 1170, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1171, - "CommandName": "Remove-PnPTenantSite", "Rank": 2, + "CommandName": "Remove-PnPTenantSite", + "Id": 1171, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "Id": 1172, - "CommandName": "Remove-PnPTenantSite", "Rank": 3, + "CommandName": "Remove-PnPTenantSite", + "Id": 1172, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "Id": 1173, - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Id": 1173, "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "Id": 1174, - "CommandName": "Remove-PnPTenantTheme", "Rank": 1, + "CommandName": "Remove-PnPTenantTheme", + "Id": 1174, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Id": 1175, - "CommandName": "Remove-PnPTerm", "Rank": 1, + "CommandName": "Remove-PnPTerm", + "Id": 1175, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Id": 1176, - "CommandName": "Remove-PnPTerm", "Rank": 2, + "CommandName": "Remove-PnPTerm", + "Id": 1176, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 1177, - "CommandName": "Remove-PnPTermGroup", "Rank": 1, + "CommandName": "Remove-PnPTermGroup", + "Id": 1177, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Id": 1178, - "CommandName": "Remove-PnPTermGroup", "Rank": 2, + "CommandName": "Remove-PnPTermGroup", + "Id": 1178, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "Id": 1179, - "CommandName": "Remove-PnPTermGroup", "Rank": 3, + "CommandName": "Remove-PnPTermGroup", + "Id": 1179, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "Id": 1180, - "CommandName": "Remove-PnPTermLabel", "Rank": 1, + "CommandName": "Remove-PnPTermLabel", + "Id": 1180, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "Id": 1181, - "CommandName": "Remove-PnPTermLabel", "Rank": 2, + "CommandName": "Remove-PnPTermLabel", + "Id": 1181, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 1182, - "CommandName": "Remove-PnPUser", "Rank": 1, + "CommandName": "Remove-PnPUser", + "Id": 1182, "Command": "Remove-PnPUser -Identity 23" }, { - "Id": 1183, - "CommandName": "Remove-PnPUser", "Rank": 2, + "CommandName": "Remove-PnPUser", + "Id": 1183, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "Id": 1184, - "CommandName": "Remove-PnPUser", "Rank": 3, + "CommandName": "Remove-PnPUser", + "Id": 1184, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "Id": 1185, - "CommandName": "Remove-PnPUserInfo", "Rank": 1, + "CommandName": "Remove-PnPUserInfo", + "Id": 1185, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Id": 1186, - "CommandName": "Remove-PnPUserProfile", "Rank": 1, + "CommandName": "Remove-PnPUserProfile", + "Id": 1186, "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "Id": 1187, - "CommandName": "Remove-PnPView", "Rank": 1, + "CommandName": "Remove-PnPView", + "Id": 1187, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "Id": 1188, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Id": 1188, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Id": 1189, - "CommandName": "Remove-PnPWeb", "Rank": 1, + "CommandName": "Remove-PnPWeb", + "Id": 1189, "Command": "Remove-PnPWeb -Identity projectA" }, { - "Id": 1190, - "CommandName": "Remove-PnPWeb", "Rank": 2, + "CommandName": "Remove-PnPWeb", + "Id": 1190, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "Id": 1191, - "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Remove-PnPWebhookSubscription", + "Id": 1191, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "Id": 1192, - "CommandName": "Remove-PnPWebPart", "Rank": 1, + "CommandName": "Remove-PnPWebPart", + "Id": 1192, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 1193, - "CommandName": "Remove-PnPWebPart", "Rank": 2, + "CommandName": "Remove-PnPWebPart", + "Id": 1193, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "Id": 1194, - "CommandName": "Remove-PnPWikiPage", "Rank": 1, + "CommandName": "Remove-PnPWikiPage", + "Id": 1194, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "Id": 1195, - "CommandName": "Rename-PnPFile", "Rank": 1, + "CommandName": "Rename-PnPFile", + "Id": 1195, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "Id": 1196, - "CommandName": "Rename-PnPFile", "Rank": 2, + "CommandName": "Rename-PnPFile", + "Id": 1196, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "Id": 1197, - "CommandName": "Rename-PnPFile", "Rank": 3, + "CommandName": "Rename-PnPFile", + "Id": 1197, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "Id": 1198, - "CommandName": "Rename-PnPFolder", "Rank": 1, + "CommandName": "Rename-PnPFolder", + "Id": 1198, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "Id": 1199, - "CommandName": "Repair-PnPSite", "Rank": 1, + "CommandName": "Repair-PnPSite", + "Id": 1199, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1200, - "CommandName": "Repair-PnPSite", "Rank": 2, + "CommandName": "Repair-PnPSite", + "Id": 1200, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Id": 1201, - "CommandName": "Request-PnPAccessToken", "Rank": 1, + "CommandName": "Request-PnPAccessToken", + "Id": 1201, "Command": "Request-PnPAccessToken" }, { - "Id": 1202, - "CommandName": "Request-PnPAccessToken", "Rank": 2, + "CommandName": "Request-PnPAccessToken", + "Id": 1202, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "Id": 1203, - "CommandName": "Request-PnPAccessToken", "Rank": 3, + "CommandName": "Request-PnPAccessToken", + "Id": 1203, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "Id": 1204, - "CommandName": "Request-PnPAccessToken", "Rank": 4, + "CommandName": "Request-PnPAccessToken", + "Id": 1204, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "Id": 1205, - "CommandName": "Request-PnPPersonalSite", "Rank": 1, + "CommandName": "Request-PnPPersonalSite", + "Id": 1205, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "Id": 1206, - "CommandName": "Request-PnPPersonalSite", "Rank": 2, + "CommandName": "Request-PnPPersonalSite", + "Id": 1206, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "Id": 1207, - "CommandName": "Request-PnPReIndexList", "Rank": 1, + "CommandName": "Request-PnPReIndexList", + "Id": 1207, "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "Id": 1208, - "CommandName": "Request-PnPReIndexWeb", "Rank": 1, + "CommandName": "Request-PnPReIndexWeb", + "Id": 1208, "Command": "Request-PnPReIndexWeb" }, { - "Id": 1209, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1209, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "Id": 1210, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1210, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "Id": 1211, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1211, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "Id": 1212, - "CommandName": "Reset-PnPFileVersion", "Rank": 1, + "CommandName": "Reset-PnPFileVersion", + "Id": 1212, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "Id": 1213, - "CommandName": "Reset-PnPFileVersion", "Rank": 2, + "CommandName": "Reset-PnPFileVersion", + "Id": 1213, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "Id": 1214, - "CommandName": "Reset-PnPLabel", "Rank": 1, + "CommandName": "Reset-PnPLabel", + "Id": 1214, "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "Id": 1215, - "CommandName": "Reset-PnPLabel", "Rank": 2, + "CommandName": "Reset-PnPLabel", + "Id": 1215, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "Id": 1216, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1216, "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Id": 1217, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Id": 1217, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "Id": 1218, - "CommandName": "Resolve-PnPFolder", "Rank": 1, + "CommandName": "Resolve-PnPFolder", + "Id": 1218, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "Id": 1219, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Id": 1219, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 1220, - "CommandName": "Restore-PnPFileVersion", "Rank": 1, + "CommandName": "Restore-PnPFileVersion", + "Id": 1220, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Id": 1221, - "CommandName": "Restore-PnPFileVersion", "Rank": 2, + "CommandName": "Restore-PnPFileVersion", + "Id": 1221, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "Id": 1222, - "CommandName": "Restore-PnPFileVersion", "Rank": 3, + "CommandName": "Restore-PnPFileVersion", + "Id": 1222, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Id": 1223, - "CommandName": "Restore-PnPListItemVersion", "Rank": 1, + "CommandName": "Restore-PnPListItemVersion", + "Id": 1223, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Id": 1224, - "CommandName": "Restore-PnPListItemVersion", "Rank": 2, + "CommandName": "Restore-PnPListItemVersion", + "Id": 1224, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Id": 1225, - "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPRecycleBinItem", + "Id": 1225, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Id": 1226, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1226, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1227, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1227, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Id": 1228, - "CommandName": "Restore-PnPTenantSite", "Rank": 1, + "CommandName": "Restore-PnPTenantSite", + "Id": 1228, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1229, - "CommandName": "Restore-PnPTenantSite", "Rank": 2, + "CommandName": "Restore-PnPTenantSite", + "Id": 1229, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Id": 1230, - "CommandName": "Restore-PnPTenantSite", "Rank": 3, + "CommandName": "Restore-PnPTenantSite", + "Id": 1230, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "Id": 1231, - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Id": 1231, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "Id": 1232, - "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1, + "CommandName": "Revoke-PnPHubSiteRights", + "Id": 1232, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 1233, - "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Revoke-PnPSiteDesignRights", + "Id": 1233, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 1234, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Id": 1234, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Id": 1235, - "CommandName": "Revoke-PnPUserSession", "Rank": 1, + "CommandName": "Revoke-PnPUserSession", + "Id": 1235, "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "Id": 1236, - "CommandName": "Save-PnPPageConversionLog", "Rank": 1, + "CommandName": "Save-PnPPageConversionLog", + "Id": 1236, "Command": "Save-PnPPageConversionLog" }, { - "Id": 1237, - "CommandName": "Save-PnPSiteTemplate", "Rank": 1, + "CommandName": "Save-PnPSiteTemplate", + "Id": 1237, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "Id": 1238, - "CommandName": "Save-PnPTenantTemplate", "Rank": 1, + "CommandName": "Save-PnPTenantTemplate", + "Id": 1238, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "Id": 1239, - "CommandName": "Send-PnPMail", "Rank": 1, + "CommandName": "Send-PnPMail", + "Id": 1239, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Id": 1240, - "CommandName": "Send-PnPMail", "Rank": 2, + "CommandName": "Send-PnPMail", + "Id": 1240, "Command": "Send-PnPMail -From \"sharedmailbox@contoso.onmicrosoft.com\" -To \"recipient1@contoso.com\",\"recipient2@contoso.com\",\"recipient3@contoso.com\" -Cc \"recipient4@contoso.com\" -Bcc \"recipient5@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Importance Low" }, { - "Id": 1241, - "CommandName": "Send-PnPMail", "Rank": 3, + "CommandName": "Send-PnPMail", + "Id": 1241, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Id": 1242, - "CommandName": "Send-PnPMail", "Rank": 4, + "CommandName": "Send-PnPMail", + "Id": 1242, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.onmicrosoft.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server contoso.mail.protection.outlook.com" }, { - "Id": 1243, - "CommandName": "Send-PnPMail", "Rank": 5, + "CommandName": "Send-PnPMail", + "Id": 1243, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com" }, { - "Id": 1244, - "CommandName": "Send-PnPMail", "Rank": 6, + "CommandName": "Send-PnPMail", + "Id": 1244, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"" }, { - "Id": 1245, - "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Id": 1245, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "Id": 1246, - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1246, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1247, - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1247, "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "Id": 1248, - "CommandName": "Set-PnPAppSideLoading", "Rank": 1, + "CommandName": "Set-PnPAppSideLoading", + "Id": 1248, "Command": "Set-PnPAppSideLoading -On" }, { - "Id": 1249, - "CommandName": "Set-PnPAppSideLoading", "Rank": 2, + "CommandName": "Set-PnPAppSideLoading", + "Id": 1249, "Command": "Set-PnPAppSideLoading -Off" }, { - "Id": 1250, - "CommandName": "Set-PnPAuditing", "Rank": 1, + "CommandName": "Set-PnPAuditing", + "Id": 1250, "Command": "Set-PnPAuditing -EnableAll" }, { - "Id": 1251, - "CommandName": "Set-PnPAuditing", "Rank": 2, + "CommandName": "Set-PnPAuditing", + "Id": 1251, "Command": "Set-PnPAuditing -DisableAll" }, { - "Id": 1252, - "CommandName": "Set-PnPAuditing", "Rank": 3, + "CommandName": "Set-PnPAuditing", + "Id": 1252, "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "Id": 1253, - "CommandName": "Set-PnPAuditing", "Rank": 4, + "CommandName": "Set-PnPAuditing", + "Id": 1253, "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "Id": 1254, - "CommandName": "Set-PnPAuditing", "Rank": 5, + "CommandName": "Set-PnPAuditing", + "Id": 1254, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "Id": 1255, - "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1, + "CommandName": "Set-PnPAvailablePageLayouts", + "Id": 1255, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "Id": 1256, - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1256, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "Id": 1257, - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1257, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "Id": 1258, - "CommandName": "Set-PnPAzureADGroup", "Rank": 1, + "CommandName": "Set-PnPAzureADGroup", + "Id": 1258, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "Id": 1259, - "CommandName": "Set-PnPAzureADGroup", "Rank": 2, + "CommandName": "Set-PnPAzureADGroup", + "Id": 1259, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Id": 1260, - "CommandName": "Set-PnPAzureADGroup", "Rank": 3, + "CommandName": "Set-PnPAzureADGroup", + "Id": 1260, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "Id": 1261, - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1261, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "Id": 1262, - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2, + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1262, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "Id": 1263, - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3, + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1263, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "Id": 1264, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1264, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "Id": 1265, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1265, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "Id": 1266, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1266, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "Id": 1267, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1267, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "Id": 1268, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1268, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "Id": 1269, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1269, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "Id": 1270, - "CommandName": "Set-PnPContentType", "Rank": 1, + "CommandName": "Set-PnPContentType", + "Id": 1270, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Id": 1271, - "CommandName": "Set-PnPContentType", "Rank": 2, + "CommandName": "Set-PnPContentType", + "Id": 1271, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "Id": 1272, - "CommandName": "Set-PnPContentType", "Rank": 3, + "CommandName": "Set-PnPContentType", + "Id": 1272, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Id": 1273, - "CommandName": "Set-PnPContentType", "Rank": 4, + "CommandName": "Set-PnPContentType", + "Id": 1273, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Id": 1274, - "CommandName": "Set-PnPContentType", "Rank": 5, + "CommandName": "Set-PnPContentType", + "Id": 1274, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Id": 1275, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1275, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "Id": 1276, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1276, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "Id": 1277, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 3, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1277, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "Id": 1278, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1278, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "Id": 1279, - "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, + "CommandName": "Set-PnPDefaultContentTypeToList", + "Id": 1279, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "Id": 1280, - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1, + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1280, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "Id": 1281, - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2, + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1281, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "Id": 1282, - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3, + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1282, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "Id": 1283, - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1283, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "Id": 1284, - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2, + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1284, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Id": 1285, - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3, + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1285, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Id": 1286, - "CommandName": "Set-PnPDocumentSetField", "Rank": 1, + "CommandName": "Set-PnPDocumentSetField", + "Id": 1286, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "Id": 1287, - "CommandName": "Set-PnPDocumentSetField", "Rank": 2, + "CommandName": "Set-PnPDocumentSetField", + "Id": 1287, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "Id": 1288, - "CommandName": "Set-PnPField", "Rank": 1, + "CommandName": "Set-PnPField", + "Id": 1288, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "Id": 1289, - "CommandName": "Set-PnPField", "Rank": 2, + "CommandName": "Set-PnPField", + "Id": 1289, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "Id": 1290, - "CommandName": "Set-PnPField", "Rank": 3, + "CommandName": "Set-PnPField", + "Id": 1290, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "Id": 1291, - "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1291, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "Id": 1292, - "CommandName": "Set-PnPFileCheckedIn", "Rank": 2, + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1292, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "Id": 1293, - "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Set-PnPFileCheckedOut", + "Id": 1293, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { - "Id": 1294, - "CommandName": "Set-PnPFolderPermission", "Rank": 1, + "CommandName": "Set-PnPFolderPermission", + "Id": 1294, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1295, - "CommandName": "Set-PnPFolderPermission", "Rank": 2, + "CommandName": "Set-PnPFolderPermission", + "Id": 1295, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1296, - "CommandName": "Set-PnPFolderPermission", "Rank": 3, + "CommandName": "Set-PnPFolderPermission", + "Id": 1296, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Id": 1297, - "CommandName": "Set-PnPFooter", "Rank": 1, + "CommandName": "Set-PnPFooter", + "Id": 1297, "Command": "Set-PnPFooter -Enabled:$true" }, { - "Id": 1298, - "CommandName": "Set-PnPFooter", "Rank": 2, + "CommandName": "Set-PnPFooter", + "Id": 1298, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "Id": 1299, - "CommandName": "Set-PnPFooter", "Rank": 3, + "CommandName": "Set-PnPFooter", + "Id": 1299, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "Id": 1300, - "CommandName": "Set-PnPFooter", "Rank": 4, + "CommandName": "Set-PnPFooter", + "Id": 1300, "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "Id": 1301, - "CommandName": "Set-PnPGraphSubscription", "Rank": 1, + "CommandName": "Set-PnPGraphSubscription", + "Id": 1301, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "Id": 1302, - "CommandName": "Set-PnPGroup", "Rank": 1, + "CommandName": "Set-PnPGroup", + "Id": 1302, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "Id": 1303, - "CommandName": "Set-PnPGroup", "Rank": 2, + "CommandName": "Set-PnPGroup", + "Id": 1303, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "Id": 1304, - "CommandName": "Set-PnPGroupPermissions", "Rank": 1, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1304, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "Id": 1305, - "CommandName": "Set-PnPGroupPermissions", "Rank": 2, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1305, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "Id": 1306, - "CommandName": "Set-PnPGroupPermissions", "Rank": 3, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1306, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "Id": 1307, - "CommandName": "Set-PnPGroupPermissions", "Rank": 4, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1307, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "Id": 1308, - "CommandName": "Set-PnPGroupPermissions", "Rank": 5, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1308, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "Id": 1309, - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1309, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "Id": 1310, - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1310, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "Id": 1311, - "CommandName": "Set-PnPHomePage", "Rank": 1, + "CommandName": "Set-PnPHomePage", + "Id": 1311, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "Id": 1312, - "CommandName": "Set-PnPHomePage", "Rank": 2, + "CommandName": "Set-PnPHomePage", + "Id": 1312, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "Id": 1313, - "CommandName": "Set-PnPHomeSite", "Rank": 1, + "CommandName": "Set-PnPHomeSite", + "Id": 1313, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "Id": 1314, - "CommandName": "Set-PnPHomeSite", "Rank": 2, + "CommandName": "Set-PnPHomeSite", + "Id": 1314, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "Id": 1315, - "CommandName": "Set-PnPHubSite", "Rank": 1, + "CommandName": "Set-PnPHubSite", + "Id": 1315, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "Id": 1316, - "CommandName": "Set-PnPHubSite", "Rank": 2, + "CommandName": "Set-PnPHubSite", + "Id": 1316, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "Id": 1317, - "CommandName": "Set-PnPHubSite", "Rank": 3, + "CommandName": "Set-PnPHubSite", + "Id": 1317, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "Id": 1318, - "CommandName": "Set-PnPHubSite", "Rank": 4, + "CommandName": "Set-PnPHubSite", + "Id": 1318, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "Id": 1319, - "CommandName": "Set-PnPHubSite", "Rank": 5, + "CommandName": "Set-PnPHubSite", + "Id": 1319, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "Id": 1320, - "CommandName": "Set-PnPHubSite", "Rank": 6, + "CommandName": "Set-PnPHubSite", + "Id": 1320, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "Id": 1321, - "CommandName": "Set-PnPImageListItemColumn", "Rank": 1, + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1321, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "Id": 1322, - "CommandName": "Set-PnPImageListItemColumn", "Rank": 2, + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1322, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "Id": 1323, - "CommandName": "Set-PnPIndexedProperties", "Rank": 1, + "CommandName": "Set-PnPIndexedProperties", + "Id": 1323, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "Id": 1324, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1324, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "Id": 1325, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2, + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1325, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "Id": 1326, - "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Set-PnPKnowledgeHubSite", + "Id": 1326, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "Id": 1327, - "CommandName": "Set-PnPLabel", "Rank": 1, + "CommandName": "Set-PnPLabel", + "Id": 1327, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "Id": 1328, - "CommandName": "Set-PnPLabel", "Rank": 2, + "CommandName": "Set-PnPLabel", + "Id": 1328, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "Id": 1329, - "CommandName": "Set-PnPList", "Rank": 1, + "CommandName": "Set-PnPList", + "Id": 1329, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "Id": 1330, - "CommandName": "Set-PnPList", "Rank": 2, + "CommandName": "Set-PnPList", + "Id": 1330, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "Id": 1331, - "CommandName": "Set-PnPList", "Rank": 3, + "CommandName": "Set-PnPList", + "Id": 1331, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "Id": 1332, - "CommandName": "Set-PnPList", "Rank": 4, + "CommandName": "Set-PnPList", + "Id": 1332, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "Id": 1333, - "CommandName": "Set-PnPList", "Rank": 5, + "CommandName": "Set-PnPList", + "Id": 1333, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "Id": 1334, - "CommandName": "Set-PnPList", "Rank": 6, + "CommandName": "Set-PnPList", + "Id": 1334, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "Id": 1335, - "CommandName": "Set-PnPList", "Rank": 7, + "CommandName": "Set-PnPList", + "Id": 1335, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "Id": 1336, - "CommandName": "Set-PnPList", "Rank": 8, + "CommandName": "Set-PnPList", + "Id": 1336, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "Id": 1337, - "CommandName": "Set-PnPList", "Rank": 9, + "CommandName": "Set-PnPList", + "Id": 1337, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "Id": 1338, - "CommandName": "Set-PnPList", "Rank": 10, + "CommandName": "Set-PnPList", + "Id": 1338, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "Id": 1339, - "CommandName": "Set-PnPList", "Rank": 11, + "CommandName": "Set-PnPList", + "Id": 1339, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "Id": 1340, - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1340, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "Id": 1341, - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 2, + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1341, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "Id": 1342, - "CommandName": "Set-PnPListItem", "Rank": 1, + "CommandName": "Set-PnPListItem", + "Id": 1342, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1343, - "CommandName": "Set-PnPListItem", "Rank": 2, + "CommandName": "Set-PnPListItem", + "Id": 1343, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1344, - "CommandName": "Set-PnPListItem", "Rank": 3, + "CommandName": "Set-PnPListItem", + "Id": 1344, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1345, - "CommandName": "Set-PnPListItem", "Rank": 4, + "CommandName": "Set-PnPListItem", + "Id": 1345, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "Id": 1346, - "CommandName": "Set-PnPListItem", "Rank": 5, + "CommandName": "Set-PnPListItem", + "Id": 1346, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "Id": 1347, - "CommandName": "Set-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1347, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Id": 1348, - "CommandName": "Set-PnPListItemAsRecord", "Rank": 2, + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1348, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "Id": 1349, - "CommandName": "Set-PnPListItemPermission", "Rank": 1, + "CommandName": "Set-PnPListItemPermission", + "Id": 1349, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1350, - "CommandName": "Set-PnPListItemPermission", "Rank": 2, + "CommandName": "Set-PnPListItemPermission", + "Id": 1350, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1351, - "CommandName": "Set-PnPListItemPermission", "Rank": 3, + "CommandName": "Set-PnPListItemPermission", + "Id": 1351, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Id": 1352, - "CommandName": "Set-PnPListItemPermission", "Rank": 4, + "CommandName": "Set-PnPListItemPermission", + "Id": 1352, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "Id": 1353, - "CommandName": "Set-PnPListItemPermission", "Rank": 5, + "CommandName": "Set-PnPListItemPermission", + "Id": 1353, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "Id": 1354, - "CommandName": "Set-PnPListPermission", "Rank": 1, + "CommandName": "Set-PnPListPermission", + "Id": 1354, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1355, - "CommandName": "Set-PnPListPermission", "Rank": 2, + "CommandName": "Set-PnPListPermission", + "Id": 1355, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1356, - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1356, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "Id": 1357, - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2, + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1357, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "Id": 1358, - "CommandName": "Set-PnPMasterPage", "Rank": 1, + "CommandName": "Set-PnPMasterPage", + "Id": 1358, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Id": 1359, - "CommandName": "Set-PnPMasterPage", "Rank": 2, + "CommandName": "Set-PnPMasterPage", + "Id": 1359, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Id": 1360, - "CommandName": "Set-PnPMasterPage", "Rank": 3, + "CommandName": "Set-PnPMasterPage", + "Id": 1360, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Id": 1361, - "CommandName": "Set-PnPMasterPage", "Rank": 4, + "CommandName": "Set-PnPMasterPage", + "Id": 1361, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Id": 1362, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1362, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "Id": 1363, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1363, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1364, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1364, "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1365, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1365, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "Id": 1366, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1366, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1367, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1367, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1368, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1368, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "Id": 1369, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1369, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1370, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1370, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1371, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1371, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "Id": 1372, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1372, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1373, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1373, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1374, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1374, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "Id": 1375, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1375, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1376, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1376, "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1377, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1377, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "Id": 1378, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1378, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1379, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1379, "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1380, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1380, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "Id": 1381, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1381, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Id": 1382, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1382, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "Id": 1383, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1383, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "Id": 1384, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1384, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "Id": 1385, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1385, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 1386, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1386, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "Id": 1387, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1387, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "Id": 1388, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 1, + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1388, "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "Id": 1389, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 2, + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1389, "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "Id": 1390, - "CommandName": "Set-PnPPage", "Rank": 1, + "CommandName": "Set-PnPPage", + "Id": 1390, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "Id": 1391, - "CommandName": "Set-PnPPage", "Rank": 2, + "CommandName": "Set-PnPPage", + "Id": 1391, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "Id": 1392, - "CommandName": "Set-PnPPage", "Rank": 3, + "CommandName": "Set-PnPPage", + "Id": 1392, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "Id": 1393, - "CommandName": "Set-PnPPage", "Rank": 4, + "CommandName": "Set-PnPPage", + "Id": 1393, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "Id": 1394, - "CommandName": "Set-PnPPage", "Rank": 5, + "CommandName": "Set-PnPPage", + "Id": 1394, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "Id": 1395, - "CommandName": "Set-PnPPage", "Rank": 6, + "CommandName": "Set-PnPPage", + "Id": 1395, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "Id": 1396, - "CommandName": "Set-PnPPage", "Rank": 7, + "CommandName": "Set-PnPPage", + "Id": 1396, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Id": 1397, - "CommandName": "Set-PnPPage", "Rank": 8, + "CommandName": "Set-PnPPage", + "Id": 1397, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "Id": 1398, - "CommandName": "Set-PnPPage", "Rank": 9, + "CommandName": "Set-PnPPage", + "Id": 1398, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Id": 1399, - "CommandName": "Set-PnPPage", "Rank": 10, + "CommandName": "Set-PnPPage", + "Id": 1399, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Id": 1400, - "CommandName": "Set-PnPPage", "Rank": 11, + "CommandName": "Set-PnPPage", + "Id": 1400, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "Id": 1401, - "CommandName": "Set-PnPPageTextPart", "Rank": 1, + "CommandName": "Set-PnPPageTextPart", + "Id": 1401, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { - "Id": 1402, - "CommandName": "Set-PnPPageWebPart", "Rank": 1, + "CommandName": "Set-PnPPageWebPart", + "Id": 1402, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { - "Id": 1403, - "CommandName": "Set-PnPPageWebPart", "Rank": 2, + "CommandName": "Set-PnPPageWebPart", + "Id": 1403, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "Id": 1404, - "CommandName": "Set-PnPPlannerBucket", "Rank": 1, + "CommandName": "Set-PnPPlannerBucket", + "Id": 1404, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "Id": 1405, - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1405, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "Id": 1406, - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1406, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "Id": 1407, - "CommandName": "Set-PnPPlannerPlan", "Rank": 1, + "CommandName": "Set-PnPPlannerPlan", + "Id": 1407, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { - "Id": 1408, - "CommandName": "Set-PnPPlannerTask", "Rank": 1, + "CommandName": "Set-PnPPlannerTask", + "Id": 1408, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "Id": 1409, - "CommandName": "Set-PnPPlannerTask", "Rank": 2, + "CommandName": "Set-PnPPlannerTask", + "Id": 1409, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "Id": 1410, - "CommandName": "Set-PnPPlannerTask", "Rank": 3, + "CommandName": "Set-PnPPlannerTask", + "Id": 1410, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Id": 1411, - "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Set-PnPPlannerUserPolicy", + "Id": 1411, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 1412, - "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1412, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "Id": 1413, - "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1413, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "Id": 1414, - "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1414, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "Id": 1415, - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1415, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "Id": 1416, - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2, + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1416, "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "Id": 1417, - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3, + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1417, "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "Id": 1418, - "CommandName": "Set-PnPRoleDefinition", "Rank": 1, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1418, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "Id": 1419, - "CommandName": "Set-PnPRoleDefinition", "Rank": 2, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1419, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "Id": 1420, - "CommandName": "Set-PnPRoleDefinition", "Rank": 3, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1420, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "Id": 1421, - "CommandName": "Set-PnPRoleDefinition", "Rank": 4, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1421, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "Id": 1422, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1422, "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "Id": 1423, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1423, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Id": 1424, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1424, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Id": 1425, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1425, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 1426, - "CommandName": "Set-PnPSearchExternalItem", "Rank": 1, + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1426, "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone" }, { - "Id": 1427, - "CommandName": "Set-PnPSearchExternalItem", "Rank": 2, + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1427, "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1428, - "CommandName": "Set-PnPSearchSettings", "Rank": 1, + "CommandName": "Set-PnPSearchSettings", + "Id": 1428, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "Id": 1429, - "CommandName": "Set-PnPSearchSettings", "Rank": 2, + "CommandName": "Set-PnPSearchSettings", + "Id": 1429, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "Id": 1430, - "CommandName": "Set-PnPSearchSettings", "Rank": 3, + "CommandName": "Set-PnPSearchSettings", + "Id": 1430, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "Id": 1431, - "CommandName": "Set-PnPSearchSettings", "Rank": 4, + "CommandName": "Set-PnPSearchSettings", + "Id": 1431, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "Id": 1432, - "CommandName": "Set-PnPSearchSettings", "Rank": 5, + "CommandName": "Set-PnPSearchSettings", + "Id": 1432, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "Id": 1433, - "CommandName": "Set-PnPSearchSettings", "Rank": 6, + "CommandName": "Set-PnPSearchSettings", + "Id": 1433, "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "Id": 1434, - "CommandName": "Set-PnPSearchSettings", "Rank": 7, + "CommandName": "Set-PnPSearchSettings", + "Id": 1434, "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "Id": 1435, - "CommandName": "Set-PnPSite", "Rank": 1, + "CommandName": "Set-PnPSite", + "Id": 1435, "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "Id": 1436, - "CommandName": "Set-PnPSite", "Rank": 2, + "CommandName": "Set-PnPSite", + "Id": 1436, "Command": "Set-PnPSite -Classification $null" }, { - "Id": 1437, - "CommandName": "Set-PnPSite", "Rank": 3, + "CommandName": "Set-PnPSite", + "Id": 1437, "Command": "Set-PnPSite -DisableFlows" }, { - "Id": 1438, - "CommandName": "Set-PnPSite", "Rank": 4, + "CommandName": "Set-PnPSite", + "Id": 1438, "Command": "Set-PnPSite -DisableFlows:$false" }, { - "Id": 1439, - "CommandName": "Set-PnPSite", "Rank": 5, + "CommandName": "Set-PnPSite", + "Id": 1439, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "Id": 1440, - "CommandName": "Set-PnPSite", "Rank": 6, + "CommandName": "Set-PnPSite", + "Id": 1440, "Command": "Set-PnPSite -NoScriptSite $false" }, { - "Id": 1441, - "CommandName": "Set-PnPSite", "Rank": 7, + "CommandName": "Set-PnPSite", + "Id": 1441, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "Id": 1442, - "CommandName": "Set-PnPSite", "Rank": 8, + "CommandName": "Set-PnPSite", + "Id": 1442, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "Id": 1443, - "CommandName": "Set-PnPSite", "Rank": 9, + "CommandName": "Set-PnPSite", + "Id": 1443, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "Id": 1444, - "CommandName": "Set-PnPSite", "Rank": 10, + "CommandName": "Set-PnPSite", + "Id": 1444, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "Id": 1445, - "CommandName": "Set-PnPSite", "Rank": 11, + "CommandName": "Set-PnPSite", + "Id": 1445, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "Id": 1446, - "CommandName": "Set-PnPSite", "Rank": 12, + "CommandName": "Set-PnPSite", + "Id": 1446, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "Id": 1447, - "CommandName": "Set-PnPSite", "Rank": 13, + "CommandName": "Set-PnPSite", + "Id": 1447, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "Id": 1448, - "CommandName": "Set-PnPSite", "Rank": 14, + "CommandName": "Set-PnPSite", + "Id": 1448, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "Id": 1449, - "CommandName": "Set-PnPSite", "Rank": 15, + "CommandName": "Set-PnPSite", + "Id": 1449, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "Id": 1450, - "CommandName": "Set-PnPSite", "Rank": 16, + "CommandName": "Set-PnPSite", + "Id": 1450, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "Id": 1451, - "CommandName": "Set-PnPSite", "Rank": 17, + "CommandName": "Set-PnPSite", + "Id": 1451, "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "Id": 1452, - "CommandName": "Set-PnPSiteClassification", "Rank": 1, + "CommandName": "Set-PnPSiteClassification", + "Id": 1452, "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "Id": 1453, - "CommandName": "Set-PnPSiteClosure", "Rank": 1, + "CommandName": "Set-PnPSiteClosure", + "Id": 1453, "Command": "Set-PnPSiteClosure -State Open" }, { - "Id": 1454, - "CommandName": "Set-PnPSiteClosure", "Rank": 2, + "CommandName": "Set-PnPSiteClosure", + "Id": 1454, "Command": "Set-PnPSiteClosure -State Closed" }, { - "Id": 1455, - "CommandName": "Set-PnPSiteDesign", "Rank": 1, + "CommandName": "Set-PnPSiteDesign", + "Id": 1455, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "Id": 1456, - "CommandName": "Set-PnPSiteDesign", "Rank": 2, + "CommandName": "Set-PnPSiteDesign", + "Id": 1456, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Company Design\" -Description \"My description\" -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"" }, { - "Id": 1457, - "CommandName": "Set-PnPSiteGroup", "Rank": 1, + "CommandName": "Set-PnPSiteGroup", + "Id": 1457, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "Id": 1458, - "CommandName": "Set-PnPSiteGroup", "Rank": 2, + "CommandName": "Set-PnPSiteGroup", + "Id": 1458, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "Id": 1459, - "CommandName": "Set-PnPSitePolicy", "Rank": 1, + "CommandName": "Set-PnPSitePolicy", + "Id": 1459, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Id": 1460, - "CommandName": "Set-PnPSiteScript", "Rank": 1, + "CommandName": "Set-PnPSiteScript", + "Id": 1460, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Id": 1461, - "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1, + "CommandName": "Set-PnPSiteScriptPackage", + "Id": 1461, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Id": 1462, - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1462, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "Id": 1463, - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1463, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "Id": 1464, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1464, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "Id": 1465, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1465, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "Id": 1466, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1466, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Id": 1467, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1467, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Id": 1468, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1468, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Id": 1469, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 6, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1469, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Id": 1470, - "CommandName": "Set-PnPStorageEntity", "Rank": 1, + "CommandName": "Set-PnPStorageEntity", + "Id": 1470, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Id": 1471, - "CommandName": "Set-PnPStorageEntity", "Rank": 2, + "CommandName": "Set-PnPStorageEntity", + "Id": 1471, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Id": 1472, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1472, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 1473, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1473, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 1474, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1474, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 1475, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1475, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 1476, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1476, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "Id": 1477, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 2, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1477, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "Id": 1478, - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1478, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "Id": 1479, - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1479, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "Id": 1480, - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1480, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "Id": 1481, - "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1, + "CommandName": "Set-PnPTeamifyPromptHidden", + "Id": 1481, "Command": "Set-PnPTeamifyPromptHidden" }, { - "Id": 1482, - "CommandName": "Set-PnPTeamsChannel", "Rank": 1, + "CommandName": "Set-PnPTeamsChannel", + "Id": 1482, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "Id": 1483, - "CommandName": "Set-PnPTeamsChannel", "Rank": 2, + "CommandName": "Set-PnPTeamsChannel", + "Id": 1483, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "Id": 1484, - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1, + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1484, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "Id": 1485, - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2, + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1485, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "Id": 1486, - "CommandName": "Set-PnPTeamsTab", "Rank": 1, + "CommandName": "Set-PnPTeamsTab", + "Id": 1486, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "Id": 1487, - "CommandName": "Set-PnPTeamsTag", "Rank": 1, + "CommandName": "Set-PnPTeamsTag", + "Id": 1487, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "Id": 1488, - "CommandName": "Set-PnPTeamsTeam", "Rank": 1, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1488, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "Id": 1489, - "CommandName": "Set-PnPTeamsTeam", "Rank": 2, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1489, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "Id": 1490, - "CommandName": "Set-PnPTeamsTeam", "Rank": 3, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1490, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "Id": 1491, - "CommandName": "Set-PnPTeamsTeam", "Rank": 4, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1491, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "Id": 1492, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1492, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "Id": 1493, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1493, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "Id": 1494, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1494, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "Id": 1495, - "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamPicture", + "Id": 1495, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "Id": 1496, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1496, "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "Id": 1497, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1497, "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "Id": 1498, - "CommandName": "Set-PnPTenant", "Rank": 1, + "CommandName": "Set-PnPTenant", + "Id": 1498, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { - "Id": 1499, - "CommandName": "Set-PnPTenant", "Rank": 2, + "CommandName": "Set-PnPTenant", + "Id": 1499, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "Id": 1500, - "CommandName": "Set-PnPTenant", "Rank": 3, + "CommandName": "Set-PnPTenant", + "Id": 1500, "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "Id": 1501, - "CommandName": "Set-PnPTenant", "Rank": 4, + "CommandName": "Set-PnPTenant", + "Id": 1501, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "Id": 1502, - "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Id": 1502, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "Id": 1503, - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1503, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "Id": 1504, - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1504, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "Id": 1505, - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3, + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1505, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "Id": 1506, - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 1, + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1506, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "Id": 1507, - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2, + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1507, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "Id": 1508, - "CommandName": "Set-PnPTenantSite", "Rank": 1, + "CommandName": "Set-PnPTenantSite", + "Id": 1508, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "Id": 1509, - "CommandName": "Set-PnPTenantSite", "Rank": 2, + "CommandName": "Set-PnPTenantSite", + "Id": 1509, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "Id": 1510, - "CommandName": "Set-PnPTenantSite", "Rank": 3, + "CommandName": "Set-PnPTenantSite", + "Id": 1510, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1511, - "CommandName": "Set-PnPTenantSite", "Rank": 4, + "CommandName": "Set-PnPTenantSite", + "Id": 1511, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 1512, - "CommandName": "Set-PnPTenantSite", "Rank": 5, + "CommandName": "Set-PnPTenantSite", + "Id": 1512, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "Id": 1513, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1513, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "Id": 1514, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1514, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "Id": 1515, - "CommandName": "Set-PnPTerm", "Rank": 1, + "CommandName": "Set-PnPTerm", + "Id": 1515, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "Id": 1516, - "CommandName": "Set-PnPTerm", "Rank": 2, + "CommandName": "Set-PnPTerm", + "Id": 1516, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1517, - "CommandName": "Set-PnPTerm", "Rank": 3, + "CommandName": "Set-PnPTerm", + "Id": 1517, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1518, - "CommandName": "Set-PnPTerm", "Rank": 4, + "CommandName": "Set-PnPTerm", + "Id": 1518, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "Id": 1519, - "CommandName": "Set-PnPTermGroup", "Rank": 1, + "CommandName": "Set-PnPTermGroup", + "Id": 1519, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "Id": 1520, - "CommandName": "Set-PnPTermSet", "Rank": 1, + "CommandName": "Set-PnPTermSet", + "Id": 1520, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "Id": 1521, - "CommandName": "Set-PnPTermSet", "Rank": 2, + "CommandName": "Set-PnPTermSet", + "Id": 1521, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "Id": 1522, - "CommandName": "Set-PnPTermSet", "Rank": 3, + "CommandName": "Set-PnPTermSet", + "Id": 1522, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "Id": 1523, - "CommandName": "Set-PnPTheme", "Rank": 1, + "CommandName": "Set-PnPTheme", + "Id": 1523, "Command": "Set-PnPTheme" }, { - "Id": 1524, - "CommandName": "Set-PnPTheme", "Rank": 2, + "CommandName": "Set-PnPTheme", + "Id": 1524, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "Id": 1525, - "CommandName": "Set-PnPTheme", "Rank": 3, + "CommandName": "Set-PnPTheme", + "Id": 1525, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "Id": 1526, - "CommandName": "Set-PnPTheme", "Rank": 4, + "CommandName": "Set-PnPTheme", + "Id": 1526, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "Id": 1527, - "CommandName": "Set-PnPTraceLog", "Rank": 1, + "CommandName": "Set-PnPTraceLog", + "Id": 1527, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "Id": 1528, - "CommandName": "Set-PnPTraceLog", "Rank": 2, + "CommandName": "Set-PnPTraceLog", + "Id": 1528, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "Id": 1529, - "CommandName": "Set-PnPTraceLog", "Rank": 3, + "CommandName": "Set-PnPTraceLog", + "Id": 1529, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "Id": 1530, - "CommandName": "Set-PnPTraceLog", "Rank": 4, + "CommandName": "Set-PnPTraceLog", + "Id": 1530, "Command": "Set-PnPTraceLog -Off" }, { - "Id": 1531, - "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Set-PnPUserOneDriveQuota", + "Id": 1531, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { - "Id": 1532, - "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1532, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "Id": 1533, - "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1533, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "Id": 1534, - "CommandName": "Set-PnPView", "Rank": 1, + "CommandName": "Set-PnPView", + "Id": 1534, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "Id": 1535, - "CommandName": "Set-PnPView", "Rank": 2, + "CommandName": "Set-PnPView", + "Id": 1535, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "Id": 1536, - "CommandName": "Set-PnPView", "Rank": 3, + "CommandName": "Set-PnPView", + "Id": 1536, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" }, { - "Id": 1537, - "CommandName": "Set-PnPView", "Rank": 4, + "CommandName": "Set-PnPView", + "Id": 1537, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "Id": 1538, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1538, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4 -CardSize Large -PropertiesJSON $myProperties" }, { - "Id": 1539, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1539, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "Id": 1540, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 3, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1540, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4" }, { - "Id": 1541, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1541, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "Id": 1542, - "CommandName": "Set-PnPWeb", "Rank": 1, + "CommandName": "Set-PnPWeb", + "Id": 1542, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "Id": 1543, - "CommandName": "Set-PnPWeb", "Rank": 2, + "CommandName": "Set-PnPWeb", + "Id": 1543, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "Id": 1544, - "CommandName": "Set-PnPWeb", "Rank": 3, + "CommandName": "Set-PnPWeb", + "Id": 1544, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "Id": 1545, - "CommandName": "Set-PnPWeb", "Rank": 4, + "CommandName": "Set-PnPWeb", + "Id": 1545, "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "Id": 1546, - "CommandName": "Set-PnPWebHeader", "Rank": 1, + "CommandName": "Set-PnPWebHeader", + "Id": 1546, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "Id": 1547, - "CommandName": "Set-PnPWebHeader", "Rank": 2, + "CommandName": "Set-PnPWebHeader", + "Id": 1547, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "Id": 1548, - "CommandName": "Set-PnPWebHeader", "Rank": 3, + "CommandName": "Set-PnPWebHeader", + "Id": 1548, "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "Id": 1549, - "CommandName": "Set-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1549, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Id": 1550, - "CommandName": "Set-PnPWebhookSubscription", "Rank": 2, + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1550, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Id": 1551, - "CommandName": "Set-PnPWebPartProperty", "Rank": 1, + "CommandName": "Set-PnPWebPartProperty", + "Id": 1551, "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { - "Id": 1552, - "CommandName": "Set-PnPWebPermission", "Rank": 1, + "CommandName": "Set-PnPWebPermission", + "Id": 1552, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Id": 1553, - "CommandName": "Set-PnPWebPermission", "Rank": 2, + "CommandName": "Set-PnPWebPermission", + "Id": 1553, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "Id": 1554, - "CommandName": "Set-PnPWebPermission", "Rank": 3, + "CommandName": "Set-PnPWebPermission", + "Id": 1554, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Id": 1555, - "CommandName": "Set-PnPWebPermission", "Rank": 4, + "CommandName": "Set-PnPWebPermission", + "Id": 1555, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "Id": 1556, - "CommandName": "Set-PnPWebTheme", "Rank": 1, + "CommandName": "Set-PnPWebTheme", + "Id": 1556, "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "Id": 1557, - "CommandName": "Set-PnPWebTheme", "Rank": 2, + "CommandName": "Set-PnPWebTheme", + "Id": 1557, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "Id": 1558, - "CommandName": "Set-PnPWikiPageContent", "Rank": 1, + "CommandName": "Set-PnPWikiPageContent", + "Id": 1558, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "Id": 1559, - "CommandName": "Submit-PnPSearchQuery", "Rank": 1, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1559, "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "Id": 1560, - "CommandName": "Submit-PnPSearchQuery", "Rank": 2, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1560, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "Id": 1561, - "CommandName": "Submit-PnPSearchQuery", "Rank": 3, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1561, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "Id": 1562, - "CommandName": "Submit-PnPSearchQuery", "Rank": 4, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1562, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "Id": 1563, - "CommandName": "Submit-PnPSearchQuery", "Rank": 5, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1563, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "Id": 1564, - "CommandName": "Submit-PnPSearchQuery", "Rank": 6, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1564, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" }, { - "Id": 1565, - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1565, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "Id": 1566, - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1566, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" }, { - "Id": 1567, - "CommandName": "Sync-PnPAppToTeams", "Rank": 1, + "CommandName": "Sync-PnPAppToTeams", + "Id": 1567, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1568, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1568, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "Id": 1569, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1569, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "Id": 1570, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1570, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "Id": 1571, - "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, + "CommandName": "Test-PnPListItemIsRecord", + "Id": 1571, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "Id": 1572, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Id": 1572, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "Id": 1573, - "CommandName": "Test-PnPSite", "Rank": 1, + "CommandName": "Test-PnPSite", + "Id": 1573, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1574, - "CommandName": "Test-PnPSite", "Rank": 2, + "CommandName": "Test-PnPSite", + "Id": 1574, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Id": 1575, - "CommandName": "Test-PnPTenantTemplate", "Rank": 1, + "CommandName": "Test-PnPTenantTemplate", + "Id": 1575, "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "Id": 1576, - "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Undo-PnPFileCheckedOut", + "Id": 1576, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "Id": 1577, - "CommandName": "Uninstall-PnPApp", "Rank": 1, + "CommandName": "Uninstall-PnPApp", + "Id": 1577, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1578, - "CommandName": "Uninstall-PnPApp", "Rank": 2, + "CommandName": "Uninstall-PnPApp", + "Id": 1578, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1579, - "CommandName": "Unpublish-PnPApp", "Rank": 1, + "CommandName": "Unpublish-PnPApp", + "Id": 1579, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1580, - "CommandName": "Unpublish-PnPApp", "Rank": 2, + "CommandName": "Unpublish-PnPApp", + "Id": 1580, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1581, - "CommandName": "Unpublish-PnPContentType", "Rank": 1, + "CommandName": "Unpublish-PnPContentType", + "Id": 1581, "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "Id": 1582, - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1, + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1582, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Id": 1583, - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 2, + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1583, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Id": 1584, - "CommandName": "Unregister-PnPHubSite", "Rank": 1, + "CommandName": "Unregister-PnPHubSite", + "Id": 1584, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Id": 1585, - "CommandName": "Update-PnPApp", "Rank": 1, + "CommandName": "Update-PnPApp", + "Id": 1585, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1586, - "CommandName": "Update-PnPApp", "Rank": 2, + "CommandName": "Update-PnPApp", + "Id": 1586, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1587, - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1587, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Id": 1588, - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1588, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "Id": 1589, - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3, + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1589, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Id": 1590, - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1590, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "Id": 1591, - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1591, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Id": 1592, - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1592, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "Id": 1593, - "CommandName": "Update-PnPTeamsApp", "Rank": 1, + "CommandName": "Update-PnPTeamsApp", + "Id": 1593, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" }, { - "Id": 1594, - "CommandName": "Update-PnPTeamsUser", "Rank": 1, + "CommandName": "Update-PnPTeamsUser", + "Id": 1594, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 1595, - "CommandName": "Update-PnPTeamsUser", "Rank": 2, + "CommandName": "Update-PnPTeamsUser", + "Id": 1595, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Id": 1596, - "CommandName": "Update-PnPTeamsUser", "Rank": 3, + "CommandName": "Update-PnPTeamsUser", + "Id": 1596, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { - "Id": 1597, - "CommandName": "Update-PnPUserType", "Rank": 1, + "CommandName": "Update-PnPUserType", + "Id": 1597, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } ] diff --git a/version.txt b/version.txt index 6d41fd14d..b8afde2e5 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.126 \ No newline at end of file +2.2.127 \ No newline at end of file From 0f87366f231ab6315838b8c45e9f26e4681311f4 Mon Sep 17 00:00:00 2001 From: KoenZomers Date: Tue, 14 Nov 2023 03:20:28 +0100 Subject: [PATCH 7/7] Adding changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b52236d4e..c186aba92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `RequestFilesLinkEnabled` and `RequestFilesLinkExpirationInDays` to the output of `Get-PnPSite` [#3557](https://github.com/pnp/powershell/pull/3557) - Added `CoreRequestFilesLinkEnabled`, `CoreRequestFilesLinkExpirationInDays`, `OneDriveRequestFilesLinkEnabled`, `OneDriveRequestFilesLinkExpirationInDays`, `BusinessConnectivityServiceDisabled` to the output of `Get-PnPTenant` [#3557](https://github.com/pnp/powershell/pull/3557) - Added `-BusinessConnectivityServiceDisabled` parameter to `Set-PnPTenant` cmdlt to allow disabling the Business Connectivity Service [#3562](https://github.com/pnp/powershell/pull/3562) +- Added `Get-PnPSiteSetVersionPolicyProgress` cmdlet which allows for getting the progress of setting a version policy for existing document libraries on a site [#3564](https://github.com/pnp/powershell/pull/3564) ### Fixed